diff --git a/pcsx2/Vif0_Dma.cpp b/pcsx2/Vif0_Dma.cpp index 61187283f4..412e52a5bd 100644 --- a/pcsx2/Vif0_Dma.cpp +++ b/pcsx2/Vif0_Dma.cpp @@ -137,7 +137,7 @@ __fi void vif0SetupTransfer() __fi void vif0VUFinish() { // Sync up VU0 so we don't errantly wait. - while ((static_cast(cpuRegs.cycle) - static_cast(VU0.cycle)) > 0 && (VU0.VI[REG_VPU_STAT].UL & 0x1)) + while (static_cast(cpuRegs.cycle - VU0.cycle) > 0 && (VU0.VI[REG_VPU_STAT].UL & 0x1)) CpuVU0->ExecuteBlock(); if (VU0.VI[REG_VPU_STAT].UL & 0x5) diff --git a/pcsx2/Vif1_Dma.cpp b/pcsx2/Vif1_Dma.cpp index f7c2761eb4..1255f20fc8 100644 --- a/pcsx2/Vif1_Dma.cpp +++ b/pcsx2/Vif1_Dma.cpp @@ -230,7 +230,7 @@ __fi void vif1SetupTransfer() __fi void vif1VUFinish() { // Sync up VU1 so we don't errantly wait. - while (!THREAD_VU1 && (static_cast(cpuRegs.cycle) - static_cast(VU1.cycle)) > 0 && (VU0.VI[REG_VPU_STAT].UL & 0x100)) + while (!THREAD_VU1 && static_cast(cpuRegs.cycle - VU1.cycle) > 0 && (VU0.VI[REG_VPU_STAT].UL & 0x100)) CpuVU1->ExecuteBlock(); if (VU0.VI[REG_VPU_STAT].UL & 0x500)