GPU: Treat 0xFF commands as nops

Fixes slowdown in Soviet Strike and 40 Winks.
This commit is contained in:
Connor McLaughlin 2021-04-13 13:18:49 +10:00
parent 62718b3c50
commit 13b398ac46

View File

@ -165,6 +165,8 @@ GPU::GP0CommandHandlerTable GPU::GenerateGP0CommandHandlerTable()
for (u32 i = 0xC0; i <= 0xDF; i++)
table[i] = &GPU::HandleCopyRectangleVRAMToCPUCommand;
table[0xFF] = &GPU::HandleNOPCommand;
return table;
}