summaryrefslogtreecommitdiffstats
path: root/src/common/settings_common.h
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-08-16 08:36:56 +0200
committerCharles Lombardo <clombardo169@gmail.com>2023-08-30 01:40:17 +0200
commit6c8f2b355ace41e33e8a1ad2f95d2816893a953b (patch)
treef7e96841efb0aa2d6a9b0a16df8247c2ec9da2a1 /src/common/settings_common.h
parentMerge pull request #11406 from german77/sdl2-28-2 (diff)
downloadyuzu-6c8f2b355ace41e33e8a1ad2f95d2816893a953b.tar
yuzu-6c8f2b355ace41e33e8a1ad2f95d2816893a953b.tar.gz
yuzu-6c8f2b355ace41e33e8a1ad2f95d2816893a953b.tar.bz2
yuzu-6c8f2b355ace41e33e8a1ad2f95d2816893a953b.tar.lz
yuzu-6c8f2b355ace41e33e8a1ad2f95d2816893a953b.tar.xz
yuzu-6c8f2b355ace41e33e8a1ad2f95d2816893a953b.tar.zst
yuzu-6c8f2b355ace41e33e8a1ad2f95d2816893a953b.zip
Diffstat (limited to '')
-rw-r--r--src/common/settings_common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/settings_common.h b/src/common/settings_common.h
index 3082e0ce1..5b170dfd5 100644
--- a/src/common/settings_common.h
+++ b/src/common/settings_common.h
@@ -12,6 +12,7 @@
namespace Settings {
enum class Category : u32 {
+ Android,
Audio,
Core,
Cpu,
@@ -68,6 +69,7 @@ public:
explicit Linkage(u32 initial_count = 0);
~Linkage();
std::map<Category, std::vector<BasicSetting*>> by_category{};
+ std::map<std::string, Settings::BasicSetting*> by_key{};
std::vector<std::function<void()>> restore_functions{};
u32 count;
};