mirror of https://github.com/PCSX2/pcsx2.git
Config: Fix McdCompressNTFS not getting set in Qt
This commit is contained in:
parent
78c05b263f
commit
269d3d22b5
|
@ -1198,7 +1198,7 @@ Pcsx2Config::Pcsx2Config()
|
||||||
BackupSavestate = true;
|
BackupSavestate = true;
|
||||||
SavestateZstdCompression = true;
|
SavestateZstdCompression = true;
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
#ifdef _WIN32
|
||||||
McdCompressNTFS = true;
|
McdCompressNTFS = true;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -1289,7 +1289,7 @@ void Pcsx2Config::LoadSave(SettingsWrapper& wrap)
|
||||||
Framerate.LoadSave(wrap);
|
Framerate.LoadSave(wrap);
|
||||||
LoadSaveMemcards(wrap);
|
LoadSaveMemcards(wrap);
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
#ifdef _WIN32
|
||||||
SettingsWrapEntry(McdCompressNTFS);
|
SettingsWrapEntry(McdCompressNTFS);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -1408,7 +1408,7 @@ void Pcsx2Config::CopyConfig(const Pcsx2Config& cfg)
|
||||||
MultitapPort1_Enabled = cfg.MultitapPort1_Enabled;
|
MultitapPort1_Enabled = cfg.MultitapPort1_Enabled;
|
||||||
ConsoleToStdio = cfg.ConsoleToStdio;
|
ConsoleToStdio = cfg.ConsoleToStdio;
|
||||||
HostFs = cfg.HostFs;
|
HostFs = cfg.HostFs;
|
||||||
#ifdef __WXMSW__
|
#ifdef _WIN32
|
||||||
McdCompressNTFS = cfg.McdCompressNTFS;
|
McdCompressNTFS = cfg.McdCompressNTFS;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue