Config: Fix path settings not being saved
Forgot to add a few lines while cherry-picking the config changes for https://dolp.in/pr6950 Fixes https://bugs.dolphin-emu.org/issues/11171
This commit is contained in:
parent
3798127cf7
commit
44879f163e
|
@ -20,6 +20,9 @@ bool IsSettingSaveable(const Config::ConfigLocation& config_location)
|
|||
if (config_location.system == Config::System::Main && config_location.section == "NetPlay")
|
||||
return true;
|
||||
|
||||
if (config_location.system == Config::System::Main && config_location.section == "General")
|
||||
return true;
|
||||
|
||||
const static std::vector<Config::ConfigLocation> s_setting_saveable{
|
||||
// Graphics.Hardware
|
||||
|
||||
|
|
Loading…
Reference in New Issue