From 48d3d38e84e2ed90c14ee2dc0b0abf23402b5f19 Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Tue, 16 Aug 2022 15:04:52 -0500 Subject: [PATCH] GS: Fix wx replayer readbacks WX runs GS commands directly, so GS isn't open --- pcsx2/gui/Dialogs/GSDumpDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/Dialogs/GSDumpDialog.cpp b/pcsx2/gui/Dialogs/GSDumpDialog.cpp index 06e5fd8f40..f490a58028 100644 --- a/pcsx2/gui/Dialogs/GSDumpDialog.cpp +++ b/pcsx2/gui/Dialogs/GSDumpDialog.cpp @@ -787,7 +787,7 @@ void Dialogs::GSDumpDialog::ProcessDumpEvent(const GSDumpFile::GSData& event, u8 case GSType::ReadFIFO2: { std::unique_ptr arr(new u8[*((int*)event.data) * 16]); - GetMTGS().InitAndReadFIFO(arr.get(), *((int*)event.data)); + GSInitAndReadFIFO(arr.get(), *((int*)event.data)); break; } case GSType::Registers: