mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 17:55:47 -04:00
GPU: Treat 0xFF commands as nops
Fixes slowdown in Soviet Strike and 40 Winks.
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user