summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OpcodeDecoding.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2023-12-21 17:46:28 +0000
committerGitHub <noreply@github.com>2023-12-21 17:46:28 +0000
commit8d4575cfd821e23dc5d1b7479fde362a76177df4 (patch)
tree251559b45336ae7a14c778dba34315f2bd30f9c9 /Source/Core/VideoCommon/OpcodeDecoding.cpp
parentf7b655e5da3edfa7a83c510f92c364b8f4c174e5 (diff)
parentf97b2d472acdc8f69427f184fa8fc35a08f231e6 (diff)
Merge pull request #12454 from lioncash/proc
VideoCommon/CommandProcessor: Pass system instance through constructor
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp')
-rw-r--r--Source/Core/VideoCommon/OpcodeDecoding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp
index f0de922302..b82d79f005 100644
--- a/Source/Core/VideoCommon/OpcodeDecoding.cpp
+++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp
@@ -220,7 +220,7 @@ public:
else
{
auto& system = Core::System::GetInstance();
- system.GetCommandProcessor().HandleUnknownOpcode(system, opcode, data, is_preprocess);
+ system.GetCommandProcessor().HandleUnknownOpcode(opcode, data, is_preprocess);
m_cycles += 1;
}
}