Build: Clean up a few warnings

This commit is contained in:
refractionpcsx2
2026-05-08 18:17:31 +02:00
committed by lightningterror
parent 22cb6b0c9c
commit 539357436c
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -876,7 +876,7 @@ static __fi void rcntEndGate(bool isVblank, u64 sCycle)
isVblank ? "vblank" : "hblank", counters[i].mode.GateMode, counters[i].count);
counters[i].count = 0;
counters[i].target &= 0xffff;
counters[i].startCycle = sCycle & ~(counters[i].rate - 1);
counters[i].startCycle = sCycle & ~(static_cast<u64>(counters[i].rate - 1));
break;
}
}