From 6dfb02c826bd24c49eb309fe6c8eac6c7a2ce11b Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Tue, 7 Mar 2023 02:23:01 +0000 Subject: [PATCH] GSDumpReplayer: Fix widescreen patch crashing Fixes a regression which caused PCSX2 to crash if you loaded a dump with widescreen patches enabled. --- pcsx2/R5900.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pcsx2/R5900.cpp b/pcsx2/R5900.cpp index 41606f3e67..80fc466512 100644 --- a/pcsx2/R5900.cpp +++ b/pcsx2/R5900.cpp @@ -79,8 +79,7 @@ void cpuReset() if (GetMTGS().IsOpen()) GetMTGS().WaitGS(); // GS better be done processing before we reset the EE, just in case. - if (!GSDumpReplayer::IsReplayingDump()) - GetVmMemory().Reset(); + GetVmMemory().Reset(); memzero(cpuRegs); memzero(fpuRegs);