mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-02 13:20:36 +00:00
Merge pull request #7316 from JMC47/removelswxpanic
Disable a panic alert in lswx that makes using not64 impossible
This commit is contained in:
commit
a2b97665bb
@ -690,9 +690,9 @@ void Interpreter::lswx(UGeckoInstruction inst)
|
|||||||
rGPR[reg] = 0;
|
rGPR[reg] = 0;
|
||||||
|
|
||||||
const u32 temp_value = PowerPC::Read_U8(EA) << (24 - offset);
|
const u32 temp_value = PowerPC::Read_U8(EA) << (24 - offset);
|
||||||
|
// Not64 (Homebrew N64 Emulator for Wii) triggers the following case.
|
||||||
if (PowerPC::ppcState.Exceptions & EXCEPTION_DSI)
|
if (PowerPC::ppcState.Exceptions & EXCEPTION_DSI)
|
||||||
{
|
{
|
||||||
PanicAlert("DSI exception in lswx.");
|
|
||||||
NOTICE_LOG(POWERPC, "DSI exception in lswx");
|
NOTICE_LOG(POWERPC, "DSI exception in lswx");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user