mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-28 23:38:49 +00:00
VideoCommon/CommandProcessor: Pass System to HandleUnknownOpcode().
This commit is contained in:
parent
e5941428d1
commit
192d8b6e40
3 changed files with 8 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue