1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 16:12:54 +08:00

Fix back-to-front logging

This commit is contained in:
Dean Herbert 2023-10-31 14:31:26 +09:00
parent bdd3f2847b
commit d379e553da
No known key found for this signature in database

View File

@ -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;
};