mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01:00
Merge pull request #1381 from skidau/Remove-false-ext-exception-error
Added a check for external exceptions that have been set
This commit is contained in:
commit
275755aaaf
@ -446,7 +446,7 @@ void CheckExternalExceptions()
|
||||
u32 exceptions = ppcState.Exceptions;
|
||||
|
||||
// EXTERNAL INTERRUPT
|
||||
if (MSR & 0x0008000) //hacky...the exception shouldn't be generated if EE isn't set...
|
||||
if (exceptions && (MSR & 0x0008000)) // Handling is delayed until MSR.EE=1.
|
||||
{
|
||||
if (exceptions & EXCEPTION_EXTERNAL_INT)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user