mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
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.
This commit is contained in:
parent
fb2e633e1e
commit
9c97654603
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue