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:
parent
edb8e5e33e
commit
9e80d3f71c
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user