mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Added a check for external exceptions that have been set. Prevents a false positive log message.
This commit is contained in:
parent
3ab921d5b0
commit
2c8e77dcc0
1 changed files with 1 additions and 1 deletions
|
@ -446,7 +446,7 @@ void CheckExternalExceptions()
|
||||||
u32 exceptions = ppcState.Exceptions;
|
u32 exceptions = ppcState.Exceptions;
|
||||||
|
|
||||||
// EXTERNAL INTERRUPT
|
// 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)
|
if (exceptions & EXCEPTION_EXTERNAL_INT)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue