Disables a panic alert in lswx that makes using not64 impossible

This commit is contained in:
JMC47 2018-08-10 21:22:45 -04:00
parent 55fa4842fb
commit 3a4574957b
1 changed files with 1 additions and 1 deletions

View File

@ -690,9 +690,9 @@ void Interpreter::lswx(UGeckoInstruction inst)
rGPR[reg] = 0;
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)
{
PanicAlert("DSI exception in lswx.");
NOTICE_LOG(POWERPC, "DSI exception in lswx");
return;
}