mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
5c0cbea1c2
commit
ab2b0bc8d2
|
@ -275,7 +275,8 @@ __releaseinline void psxBranchTest()
|
||||||
// thread sleep hangs and allow the IOP to "come back to life."
|
// thread sleep hangs and allow the IOP to "come back to life."
|
||||||
psxRegs.interrupt &= ~IopEvt_SIFhack;
|
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
|
// Safeguard: since we're not executing an exception vector, we should schedule a SIF wakeup
|
||||||
// just in case.
|
// just in case.
|
||||||
|
@ -287,6 +288,7 @@ __releaseinline void psxBranchTest()
|
||||||
|
|
||||||
PSX_INT( IopEvt_SIFhack, 128 );
|
PSX_INT( IopEvt_SIFhack, 128 );
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void iopTestIntc()
|
void iopTestIntc()
|
||||||
|
|
Loading…
Reference in New Issue