diff --git a/pcsx2/R3000A.cpp b/pcsx2/R3000A.cpp index 65678c7d06..b0ceed78a0 100644 --- a/pcsx2/R3000A.cpp +++ b/pcsx2/R3000A.cpp @@ -222,7 +222,7 @@ __ri void iopEventTest() { // start the next branch at the next counter event by default // the interrupt code below will assign nearer branches if needed. - if (psxNextCounter < (psxRegs.iopNextEventCycle - psxNextsCounter)) + if (psxNextCounter < static_cast(psxRegs.iopNextEventCycle - psxNextsCounter)) psxRegs.iopNextEventCycle = psxNextsCounter + psxNextCounter; }