VideoCommon/CommandProcessor: Pass System to HandleUnknownOpcode().

This commit is contained in:
Admiral H. Curtiss 2023-03-28 22:07:50 +02:00
parent e5941428d1
commit 192d8b6e40
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
3 changed files with 8 additions and 6 deletions

View file

@ -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;
}
}