Merge pull request #7316 from JMC47/removelswxpanic

Disable a panic alert in lswx that makes using not64 impossible
This commit is contained in:
Mat M 2018-08-10 21:34:05 -04:00 committed by GitHub
commit a2b97665bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}