diff options
| author | Mai <mai.iam2048@gmail.com> | 2024-01-13 06:38:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-13 06:38:39 -0500 |
| commit | 8760aca8ec400ceb231eaf98193f83172c2c8971 (patch) | |
| tree | 46113c3489477fd1dc76c16629f945670f59abd6 /Source/Core/VideoCommon/OpcodeDecoding.cpp | |
| parent | d36baf633c9de8d5a3da863ffacca4ba8c88260f (diff) | |
| parent | 637fd4990914831ae164c2f410cf60fe4f0d28c4 (diff) | |
Merge pull request #12500 from AdmiralCurtiss/globals-fiforecorder
FifoRecorder: Move instance to System.
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/OpcodeDecoding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<Opcode>(data[0]) != Opcode::GX_CMD_CALL_DL) { - FifoRecorder::GetInstance().WriteGPCommand(data, size); + Core::System::GetInstance().GetFifoRecorder().WriteGPCommand(data, size); } } } |
