mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
ab2b0bc8d2
commit
546d79bf4d
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue