yay sif hack mess fix

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2287 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-12-02 14:46:15 +00:00
parent ab2b0bc8d2
commit 546d79bf4d
1 changed files with 2 additions and 4 deletions

View File

@ -275,8 +275,7 @@ __releaseinline void psxBranchTest()
// thread sleep hangs and allow the IOP to "come back to life."
psxRegs.interrupt &= ~IopEvt_SIFhack;
}
#ifdef IOP_ENABLE_SIF_HACK
else if( !(psxRegs.interrupt & IopEvt_SIFhack) )
else if( IOP_ENABLE_SIF_HACK && (psxRegs.interrupt & IopEvt_SIFhack) )
{
// Safeguard: since we're not executing an exception vector, we should schedule a SIF wakeup
// just in case.
@ -286,9 +285,8 @@ __releaseinline void psxBranchTest()
// location and only schedule a SIF fix when it's detected... But for now this is easy and gives
// us good control over testing parameters...)
PSX_INT( IopEvt_SIFhack, 128 );
PSX_INT( IopEvt_SIFhack, 64 );
}
#endif
}
void iopTestIntc()