MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / LoadSaveCore

Method LoadSaveCore

pcsx2/Pcsx2Config.cpp:1977–2048  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1975}
1976
1977void Pcsx2Config::LoadSaveCore(SettingsWrapper& wrap)
1978{
1979 SettingsWrapSection("EmuCore");
1980
1981 SettingsWrapBitBool(CdvdVerboseReads);
1982 SettingsWrapBitBool(CdvdDumpBlocks);
1983 SettingsWrapBitBool(CdvdPrecache);
1984 SettingsWrapBitBool(EnablePatches);
1985 SettingsWrapBitBool(EnableCheats);
1986 SettingsWrapBitBool(EnablePINE);
1987 SettingsWrapBitBool(EnableWideScreenPatches);
1988 SettingsWrapBitBool(EnableNoInterlacingPatches);
1989 SettingsWrapBitBool(EnableFastBoot);
1990 SettingsWrapBitBool(EnableFastBootFastForward);
1991 SettingsWrapBitBool(EnableThreadPinning);
1992 SettingsWrapBitBool(EnableRecordingTools);
1993 SettingsWrapBitBool(EnableGameFixes);
1994 SettingsWrapBitBool(SaveStateOnShutdown);
1995 SettingsWrapBitBool(UseSavestateSelector);
1996 SettingsWrapBitBool(EnableDiscordPresence);
1997 SettingsWrapBitBool(InhibitScreensaver);
1998 SettingsWrapBitBool(HostFs);
1999
2000 SettingsWrapBitBool(BackupSavestate);
2001
2002 SettingsWrapBitBool(WarnAboutUnsafeSettings);
2003
2004 SettingsWrapBitBool(ManuallySetRealTimeClock);
2005 SettingsWrapBitBool(UseSystemLocaleFormat);
2006
2007 // Process various sub-components:
2008
2009 Speedhacks.LoadSave(wrap);
2010 Cpu.LoadSave(wrap);
2011 GS.LoadSave(wrap);
2012 SPU2.LoadSave(wrap);
2013 DEV9.LoadSave(wrap);
2014 Gamefixes.LoadSave(wrap);
2015 Profiler.LoadSave(wrap);
2016 Savestate.LoadSave(wrap);
2017
2018 DebuggerAnalysis.LoadSave(wrap);
2019 Trace.LoadSave(wrap);
2020
2021 Achievements.LoadSave(wrap);
2022
2023 SettingsWrapEntry(GzipIsoIndexTemplate);
2024 SettingsWrapEntry(PINESlot);
2025 SettingsWrapEntry(RtcYear);
2026 SettingsWrapEntry(RtcMonth);
2027 SettingsWrapEntry(RtcDay);
2028 SettingsWrapEntry(RtcHour);
2029 SettingsWrapEntry(RtcMinute);
2030 SettingsWrapEntry(RtcSecond);
2031
2032 // For now, this in the derived config for backwards ini compatibility.
2033 SettingsWrapEntryEx(CurrentBlockdump, "BlockDumpSaveDirectory");
2034

Callers 2

CopyConfigurationMethod · 0.80
ClearConfigurationMethod · 0.80

Calls 2

LoadSaveMethod · 0.45
IsLoadingMethod · 0.45

Tested by

no test coverage detected