From 9c97654603e9d8c01dcff9ae06981fa9bf23d29a Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 16 Sep 2020 12:15:33 +0200 Subject: [PATCH] Config: Add SYSCONF to IsSettingSaveable SYSCONF very much is saveable. Whether it's in IsSettingSaveable or not hasn't mattered until now since the SYSCONF settings use separate config loader code that doesn't check IsSettingSaveable, but the next commit will require SYSCONF to be marked as saveable. --- Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp index 4e9dcc7005..7195dfd97b 100644 --- a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp +++ b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp @@ -16,8 +16,8 @@ namespace ConfigLoaders { bool IsSettingSaveable(const Config::Location& config_location) { - for (Config::System system : - {Config::System::GFX, Config::System::DualShockUDPClient, Config::System::Logger}) + for (Config::System system : {Config::System::SYSCONF, Config::System::GFX, + Config::System::DualShockUDPClient, Config::System::Logger}) { if (config_location.system == system) return true;