diff --git a/internal/clock/clock.go b/internal/clock/clock.go index 4289e5380..4682c5e7e 100644 --- a/internal/clock/clock.go +++ b/internal/clock/clock.go @@ -81,7 +81,7 @@ func calcCountFromTPS(tps int64, now int64) int { count = int(diff * tps / int64(time.Second)) } - // Stabilize FPS. + // Stabilize the count. // Without this adjustment, count can be unstable like 0, 2, 0, 2, ... if count == 0 && (int64(time.Second)/tps/2) < diff { count = 1