summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/config.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-07-17 00:32:52 +0200
committerGitHub <noreply@github.com>2022-07-17 00:32:52 +0200
commit7d66f8339e4243c74c54b43cfbc3e944fbecb3e8 (patch)
tree87768226bd5f30bc8b980eb07ef6f94b6878c5c5 /src/yuzu_cmd/config.h
parentMerge pull request #8594 from liamwhite/skip-wp (diff)
parentcommon/setting: Make ranged a property of the type (diff)
downloadyuzu-7d66f8339e4243c74c54b43cfbc3e944fbecb3e8.tar
yuzu-7d66f8339e4243c74c54b43cfbc3e944fbecb3e8.tar.gz
yuzu-7d66f8339e4243c74c54b43cfbc3e944fbecb3e8.tar.bz2
yuzu-7d66f8339e4243c74c54b43cfbc3e944fbecb3e8.tar.lz
yuzu-7d66f8339e4243c74c54b43cfbc3e944fbecb3e8.tar.xz
yuzu-7d66f8339e4243c74c54b43cfbc3e944fbecb3e8.tar.zst
yuzu-7d66f8339e4243c74c54b43cfbc3e944fbecb3e8.zip
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 ccf77d668..32c03075f 100644
--- a/src/yuzu_cmd/config.h
+++ b/src/yuzu_cmd/config.h
@@ -33,6 +33,6 @@ private:
* @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::Setting<Type>& setting);
+ template <typename Type, bool ranged>
+ void ReadSetting(const std::string& group, Settings::Setting<Type, ranged>& setting);
};