From 4a041002079006bb2b4230ec9fd7774f05f21916 Mon Sep 17 00:00:00 2001 From: TheLastRar Date: Wed, 27 Nov 2024 18:09:52 +0000 Subject: [PATCH] [SAVEVERSION+] HostFS: Always write savestate tag --- pcsx2/IopBios.cpp | 14 +++++++------- pcsx2/SaveState.h | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pcsx2/IopBios.cpp b/pcsx2/IopBios.cpp index ee81e9f6db767..2c8617cb7f490 100644 --- a/pcsx2/IopBios.cpp +++ b/pcsx2/IopBios.cpp @@ -1423,19 +1423,19 @@ namespace R3000A bool SaveStateBase::handleFreeze() { - if (!EmuConfig.HostFs) //if hostfs isn't enabled, skip loading/saving file handles - return IsOkay(); - - if (IsLoading()) - R3000A::ioman::reset(); - if (!FreezeTag("hostHandles")) return false; + if (EmuConfig.HostFs && IsLoading()) + R3000A::ioman::reset(); + const int firstfd = R3000A::ioman::firstfd; - size_t handleCount = R3000A::handles.size(); + size_t handleCount = EmuConfig.HostFs ? R3000A::handles.size() : 0; Freeze(handleCount); + if (!EmuConfig.HostFs) //if hostfs isn't enabled, skip loading/saving file handles + return IsOkay(); + for (size_t i = 0; i < handleCount; i++) { if (IsLoading()) diff --git a/pcsx2/SaveState.h b/pcsx2/SaveState.h index c86215af7accd..81c31fa35da8d 100644 --- a/pcsx2/SaveState.h +++ b/pcsx2/SaveState.h @@ -25,7 +25,7 @@ enum class FreezeAction // [SAVEVERSION+] // This informs the auto updater that the users savestates will be invalidated. -static const u32 g_SaveVersion = (0x9A50 << 16) | 0x0000; +static const u32 g_SaveVersion = (0x9A51 << 16) | 0x0000; // the freezing data between submodules and core