mirror of https://github.com/PCSX2/pcsx2.git
Fix compile errors from last commit.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2285 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
0f9a600cbd
commit
5c0cbea1c2
|
@ -269,8 +269,7 @@ enum IOPCountRegs
|
|||
|
||||
enum IopEventId
|
||||
{
|
||||
IopEvt_SIFhack = 1, // The SIF likes to fall asleep and never wake up. This sends intermittent SBUS flags to rewake it.
|
||||
|
||||
IopEvt_SIFhack = 1 // The SIF likes to fall asleep and never wake up. This sends intermittent SBUS flags to rewake it.
|
||||
, IopEvt_Cdvd = 5 // General Cdvd commands (Seek, Standby, Break, etc)
|
||||
, IopEvt_SIF0 = 9
|
||||
, IopEvt_SIF1 = 10
|
||||
|
|
|
@ -273,7 +273,7 @@ __releaseinline void psxBranchTest()
|
|||
|
||||
// No need to execute the SIFhack after cpuExceptions, since these by nature break SIF's
|
||||
// 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) )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue