summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/config.h
diff options
context:
space:
mode:
authorGravatar Morph2022-07-07 01:22:01 -0400
committerGravatar GitHub2022-07-07 01:22:01 -0400
commitec4cba9de8649dff65acfeabaf8ff02a89894802 (patch)
treea5874596aec2534712874e7a5d72cf07ae25bac3 /src/yuzu_cmd/config.h
parentMerge pull request #8486 from liushuyu/github-actions-verify (diff)
parentsettings: Consolidate RangedSetting's with regular ones (diff)
downloadyuzu-ec4cba9de8649dff65acfeabaf8ff02a89894802.tar.gz
yuzu-ec4cba9de8649dff65acfeabaf8ff02a89894802.tar.xz
yuzu-ec4cba9de8649dff65acfeabaf8ff02a89894802.zip
Merge pull request #8522 from lat9nq/consolidate-settings
settings: Consolidate RangedSetting's with regular ones
Diffstat (limited to 'src/yuzu_cmd/config.h')
-rw-r--r--src/yuzu_cmd/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/config.h b/src/yuzu_cmd/config.h
index f61ba23ec..ccf77d668 100644
--- a/src/yuzu_cmd/config.h
+++ b/src/yuzu_cmd/config.h
@@ -28,11 +28,11 @@ public:
28 28
29private: 29private:
30 /** 30 /**
31 * Applies a value read from the sdl2_config to a BasicSetting. 31 * Applies a value read from the sdl2_config to a Setting.
32 * 32 *
33 * @param group The name of the INI group 33 * @param group The name of the INI group
34 * @param setting The yuzu setting to modify 34 * @param setting The yuzu setting to modify
35 */ 35 */
36 template <typename Type> 36 template <typename Type>
37 void ReadSetting(const std::string& group, Settings::BasicSetting<Type>& setting); 37 void ReadSetting(const std::string& group, Settings::Setting<Type>& setting);
38}; 38};