mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Check for DSI exceptions after a dcbz instruction. Fixes Rogue Squadron 3 in interpreter mode.
This commit is contained in:
@ -409,6 +409,7 @@ void Interpreter::dcbz(UGeckoInstruction _inst)
|
|||||||
// HACK but works... we think
|
// HACK but works... we think
|
||||||
if (HID2.WPE || !HID0.DCFA)
|
if (HID2.WPE || !HID0.DCFA)
|
||||||
Memory::Memset(Helper_Get_EA_X(_inst) & (~31), 0, 32);
|
Memory::Memset(Helper_Get_EA_X(_inst) & (~31), 0, 32);
|
||||||
|
PowerPC::CheckExceptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
// eciwx/ecowx technically should access the specified device
|
// eciwx/ecowx technically should access the specified device
|
||||||
|
Reference in New Issue
Block a user