mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
Do not add KPS calculation when gameplay rate is 0
This commit is contained in:
parent
42d1bdfc95
commit
24c29b7e2f
@ -64,7 +64,7 @@ namespace osu.Game.Screens.Play.HUD.KPSCounter
|
||||
|
||||
private void addTimestamp()
|
||||
{
|
||||
if (workingClock != null && workingClock.CurrentTime >= maxTime)
|
||||
if (workingClock != null && workingClock.CurrentTime >= maxTime && gameplayClock.TrueGameplayRate > 0)
|
||||
{
|
||||
timestamps.Add(workingClock.CurrentTime);
|
||||
maxTime = workingClock.CurrentTime;
|
||||
|
Loading…
Reference in New Issue
Block a user