Another fix to the hack. Yea. :p

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2286 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2009-12-02 14:44:01 +00:00
parent 5c0cbea1c2
commit ab2b0bc8d2
1 changed files with 3 additions and 1 deletions

View File

@ -275,7 +275,8 @@ __releaseinline void psxBranchTest()
// thread sleep hangs and allow the IOP to "come back to life."
psxRegs.interrupt &= ~IopEvt_SIFhack;
}
else if( IopEvt_SIFhack && (psxRegs.interrupt & IopEvt_SIFhack) )
#ifdef IOP_ENABLE_SIF_HACK
else if( !(psxRegs.interrupt & IopEvt_SIFhack) )
{
// Safeguard: since we're not executing an exception vector, we should schedule a SIF wakeup
// just in case.
@ -287,6 +288,7 @@ __releaseinline void psxBranchTest()
PSX_INT( IopEvt_SIFhack, 128 );
}
#endif
}
void iopTestIntc()