summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OpcodeDecoding.cpp
diff options
context:
space:
mode:
authorMai <mai.iam2048@gmail.com>2023-04-06 22:35:32 -0400
committerGitHub <noreply@github.com>2023-04-06 22:35:32 -0400
commit5686c614eca66e71d517daa94020d28f1f794cd8 (patch)
tree33c633ab783827393dc38ff1c31cd257b02979c2 /Source/Core/VideoCommon/OpcodeDecoding.cpp
parent74da38916e405b984c0ab54fc4bcca563ecc8042 (diff)
parent62de9c593bb5e402a9315777cb49917721e43799 (diff)
Merge pull request #11717 from AdmiralCurtiss/ppcstate-rest
Replace most remaining global ppcState references.
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;
}
}