diff options
| author | Charles Lombardo <clombardo169@gmail.com> | 2023-08-29 22:20:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-29 22:20:59 -0400 |
| commit | 44bce118534980a1da12ace2502408cf3d8641e2 (patch) | |
| tree | 006675bed0e4a67709abba293ad5142609a41395 /src/common/settings_common.h | |
| parent | 2f03fac9a055e21fce1ce23d6123499b20879daf (diff) | |
| parent | 4701eea6462dc0ed688815a8446c5122de2eeb22 (diff) | |
Merge pull request #11380 from t895/settings-integration
android: Settings rework
Diffstat (limited to 'src/common/settings_common.h')
| -rw-r--r-- | src/common/settings_common.h | 2 |
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; }; |
