mirror of https://github.com/PCSX2/pcsx2.git
Config: Fix loading of SavestateZstdCompression setting
It seems like when the setting was originally added, the author forgot to add a line to the Pcsx2Config::CopyConfig function which meant that the setting was not loaded properly.
This commit is contained in:
parent
bf0243c253
commit
ab6148f0b4
|
@ -1209,6 +1209,7 @@ void Pcsx2Config::CopyConfig(const Pcsx2Config& cfg)
|
||||||
PatchBios = cfg.PatchBios;
|
PatchBios = cfg.PatchBios;
|
||||||
PatchRegion = cfg.PatchRegion;
|
PatchRegion = cfg.PatchRegion;
|
||||||
BackupSavestate = cfg.BackupSavestate;
|
BackupSavestate = cfg.BackupSavestate;
|
||||||
|
SavestateZstdCompression = cfg.SavestateZstdCompression;
|
||||||
McdEnableEjection = cfg.McdEnableEjection;
|
McdEnableEjection = cfg.McdEnableEjection;
|
||||||
McdFolderAutoManage = cfg.McdFolderAutoManage;
|
McdFolderAutoManage = cfg.McdFolderAutoManage;
|
||||||
MultitapPort0_Enabled = cfg.MultitapPort0_Enabled;
|
MultitapPort0_Enabled = cfg.MultitapPort0_Enabled;
|
||||||
|
|
Loading…
Reference in New Issue