1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 07:09:53 +08:00

Fix back-to-front logging

This commit is contained in:
Dean Herbert
2023-10-31 14:31:26 +09:00
Unverified
parent bdd3f2847b
commit d379e553da
@@ -95,7 +95,7 @@ namespace osu.Game.Tests.Visual.Gameplay
alwaysGoingForward &= goingForward;
if (!goingForward)
Logger.Log($"Backwards time occurred ({currentTime:N1} -> {lastTime:N1})");
Logger.Log($"Backwards time occurred ({lastTime:N1} -> {currentTime:N1})");
lastTime = currentTime;
};