summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OpcodeDecoding.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2023-03-28 22:07:50 +0200
committerAdmiral H. Curtiss <pikachu025@gmail.com>2023-04-05 20:09:32 +0200
commit192d8b6e40567338a84ef7a98a92561e53e198aa (patch)
treede3e84a31ccf380e52357264eb24a6e8a42328c3 /Source/Core/VideoCommon/OpcodeDecoding.cpp
parente5941428d138e96c6dfb2832bb14bf402debd18b (diff)
VideoCommon/CommandProcessor: Pass System to HandleUnknownOpcode().
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp')
-rw-r--r--Source/Core/VideoCommon/OpcodeDecoding.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp
index 9ffb59a277..4d43c6e66a 100644
--- a/Source/Core/VideoCommon/OpcodeDecoding.cpp
+++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp
@@ -219,8 +219,8 @@ public:
}
else
{
- Core::System::GetInstance().GetCommandProcessor().HandleUnknownOpcode(opcode, data,
- is_preprocess);
+ auto& system = Core::System::GetInstance();
+ system.GetCommandProcessor().HandleUnknownOpcode(system, opcode, data, is_preprocess);
m_cycles += 1;
}
}