mirror of https://github.com/PCSX2/pcsx2.git
GS: Fix wx replayer readbacks
WX runs GS commands directly, so GS isn't open
This commit is contained in:
parent
11c903a3e9
commit
48d3d38e84
|
@ -787,7 +787,7 @@ void Dialogs::GSDumpDialog::ProcessDumpEvent(const GSDumpFile::GSData& event, u8
|
|||
case GSType::ReadFIFO2:
|
||||
{
|
||||
std::unique_ptr<u8[]> arr(new u8[*((int*)event.data) * 16]);
|
||||
GetMTGS().InitAndReadFIFO(arr.get(), *((int*)event.data));
|
||||
GSInitAndReadFIFO(arr.get(), *((int*)event.data));
|
||||
break;
|
||||
}
|
||||
case GSType::Registers:
|
||||
|
|
Loading…
Reference in New Issue