diff options
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu_cmd/config.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/yuzu_cmd/config.h b/src/yuzu_cmd/config.h index bf0103dee..1ee932be2 100644 --- a/src/yuzu_cmd/config.h +++ b/src/yuzu_cmd/config.h | |||
| @@ -26,6 +26,12 @@ public: | |||
| 26 | void Reload(); | 26 | void Reload(); |
| 27 | 27 | ||
| 28 | private: | 28 | private: |
| 29 | /** | ||
| 30 | * Applies a value read from the sdl2_config to a BasicSetting. | ||
| 31 | * | ||
| 32 | * @param group The name of the INI group | ||
| 33 | * @param setting The yuzu setting to modify | ||
| 34 | */ | ||
| 29 | template <typename Type> | 35 | template <typename Type> |
| 30 | void ReadSetting(const std::string& group, Settings::BasicSetting<Type> setting); | 36 | void ReadSetting(const std::string& group, Settings::BasicSetting<Type>& setting); |
| 31 | }; | 37 | }; |