IOP/Counters: Fix off by 1 error

This commit is contained in:
refractionpcsx2 2023-06-30 18:26:27 +01:00
parent b327033333
commit 05b064d513
1 changed files with 1 additions and 1 deletions

View File

@ -258,8 +258,8 @@ static __fi void _rcntTestOverflow(int i)
// (high bit of the target gets set by rcntWtarget when the target is behind
// the counter value, and thus should not be flagged until after an overflow)
psxCounters[i].count -= maxTarget + 1;
psxCounters[i].target &= maxTarget;
psxCounters[i].count -= maxTarget;
}
/*