mirror of https://github.com/PCSX2/pcsx2.git
IOP/Counters: Fix off by 1 error
This commit is contained in:
parent
b327033333
commit
05b064d513
|
@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue