1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 00:42:55 +08:00

Re-adjust timespan conditions in KeysPerSecondCalculator

This commit is contained in:
Ryuki 2022-08-11 00:42:22 +02:00
parent edb8e5e33e
commit 9e80d3f71c
No known key found for this signature in database
GPG Key ID: A353889EAEACBF49

View File

@ -93,7 +93,7 @@ namespace osu.Game.Screens.Play.HUD.KPSCounter
double span = 1000 * rate;
double relativeTime = workingClock.CurrentTime - timestamp;
return relativeTime >= 0 && relativeTime <= span;
return relativeTime > 0 && relativeTime <= span;
}
~KeysPerSecondCalculator()