From 637fd4990914831ae164c2f410cf60fe4f0d28c4 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Fri, 12 Jan 2024 13:35:47 +0100 Subject: FifoRecorder: Move instance to System. --- Source/Core/VideoCommon/OpcodeDecoding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp') diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp index b82d79f005..1456fbf2d0 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.cpp +++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp @@ -234,7 +234,7 @@ public: // process them. if (g_record_fifo_data && static_cast(data[0]) != Opcode::GX_CMD_CALL_DL) { - FifoRecorder::GetInstance().WriteGPCommand(data, size); + Core::System::GetInstance().GetFifoRecorder().WriteGPCommand(data, size); } } } -- cgit v1.2.3