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
3 changed files with 8 additions and 6 deletions

View File

@ -177,7 +177,7 @@ public:
void SetCpControlRegister(Core::System& system);
void SetCpStatusRegister(Core::System& system);
void HandleUnknownOpcode(u8 cmd_byte, const u8* buffer, bool preprocess);
void HandleUnknownOpcode(Core::System& system, u8 cmd_byte, const u8* buffer, bool preprocess);
// This one is shared between gfx thread and emulator thread.
// It is only used by the Fifo and by the CommandProcessor.