mirror of
https://github.com/stenzek/duckstation.git
synced 2024-11-26 23:50:31 +00:00
GPU: Treat 0xFF commands as nops
Fixes slowdown in Soviet Strike and 40 Winks.
This commit is contained in:
parent
62718b3c50
commit
13b398ac46
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user