check DSi interrupts for halted processor wakeup

This commit is contained in:
RSDuck 2020-07-27 23:18:33 +02:00
parent 5903b11bda
commit ea734084ca
1 changed files with 3 additions and 0 deletions

View File

@ -1270,6 +1270,9 @@ bool HaltInterrupted(u32 cpu)
if (IF[cpu] & IE[cpu])
return true;
if ((ConsoleType == 1) && cpu && (IF2 & IE2))
return true;
return false;
}