diff --git a/pcsx2/IopHw.h b/pcsx2/IopHw.h index 0a34d5812b..04b4a8f983 100644 --- a/pcsx2/IopHw.h +++ b/pcsx2/IopHw.h @@ -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 diff --git a/pcsx2/R3000A.cpp b/pcsx2/R3000A.cpp index b0c6989328..a083c52e9e 100644 --- a/pcsx2/R3000A.cpp +++ b/pcsx2/R3000A.cpp @@ -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) ) {