From 3a4574957b92b6bfbafd12495b8597816a81848f Mon Sep 17 00:00:00 2001 From: JMC47 Date: Fri, 10 Aug 2018 21:22:45 -0400 Subject: [PATCH] Disables a panic alert in lswx that makes using not64 impossible --- Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp index 51ad508250..e9eb2820b8 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_LoadStore.cpp @@ -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; }