summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-09-10 20:08:37 +0200
committerGitHub <noreply@github.com>2022-09-10 20:08:37 +0200
commit84507ec420bd9c6b67fdf4ed3ebedc387d218fb8 (patch)
tree1583a3234d14f8ac81464e2ec4793fc2ca4698d1 /Source/Core
parent2bbae05849f0d509c8dc80154c2a651f3c496776 (diff)
parent940a38f172c987c84eddd60d9c5bfff72f4449d7 (diff)
Merge pull request #10725 from t895/theme-merge
Android: App redesign with multi-theme system
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp
index 92411968b4..9f83c28cc5 100644
--- a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp
+++ b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp
@@ -39,10 +39,10 @@ bool IsSettingSaveable(const Config::Location& config_location)
// TODO: Kill the current Android controller mappings system
if (config_location.section == "Android")
{
- static constexpr std::array<const char*, 11> android_setting_saveable = {
+ static constexpr std::array<const char*, 12> android_setting_saveable = {
"ControlScale", "ControlOpacity", "EmulationOrientation", "JoystickRelCenter",
"LastPlatformTab", "MotionControls", "PhoneRumble", "ShowInputOverlay",
- "IRMode", "IRAlwaysRecenter", "ShowGameTitles"};
+ "IRMode", "IRAlwaysRecenter", "ShowGameTitles", "InterfaceTheme"};
return std::any_of(
android_setting_saveable.cbegin(), android_setting_saveable.cend(),