EE/Timer: Don't reset count on setting gate

This commit is contained in:
refractionpcsx2 2024-04-25 13:37:34 +01:00
parent d1e9a5265d
commit 4363255234
1 changed files with 1 additions and 1 deletions

View File

@ -769,8 +769,8 @@ static __fi void _rcntSetGate(int index)
index, counters[index].mode.GateSource ? "vblank" : "hblank", counters[index].mode.GateMode);
gates |= (1 << index);
// FIXME: Test required - should the counter be stopped here? I feel like it should only stop and reset on the gate signal happening.
counters[index].mode.IsCounting = 0;
rcntReset(index);
return;
}
else