yuzu_cmd: config: Pass a reference in

Also adds documentation for the ReadSetting function.

Address review comments.

Co-authored-by: Mai M. <mathew1800@gmail.com>
This commit is contained in:
lat9nq 2021-06-30 20:16:01 -04:00
parent 0e5c74bc9e
commit 299c5594e6
2 changed files with 11 additions and 5 deletions

View file

@ -26,6 +26,12 @@ public:
void Reload();
private:
/**
* Applies a value read from the sdl2_config to a BasicSetting.
*
* @param group The name of the INI group
* @param setting The yuzu setting to modify
*/
template <typename Type>
void ReadSetting(const std::string& group, Settings::BasicSetting<Type> setting);
void ReadSetting(const std::string& group, Settings::BasicSetting<Type>& setting);
};