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:
chaoticgd 2022-06-27 18:18:06 +01:00 committed by refractionpcsx2
parent bf0243c253
commit ab6148f0b4
1 changed files with 1 additions and 0 deletions

View File

@ -1209,6 +1209,7 @@ void Pcsx2Config::CopyConfig(const Pcsx2Config& cfg)
PatchBios = cfg.PatchBios;
PatchRegion = cfg.PatchRegion;
BackupSavestate = cfg.BackupSavestate;
SavestateZstdCompression = cfg.SavestateZstdCompression;
McdEnableEjection = cfg.McdEnableEjection;
McdFolderAutoManage = cfg.McdFolderAutoManage;
MultitapPort0_Enabled = cfg.MultitapPort0_Enabled;