We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e5a559 commit 2d4e7c2Copy full SHA for 2d4e7c2
osu.Game/Rulesets/UI/FrameStabilityContainer.cs
@@ -9,6 +9,7 @@
9
using osu.Framework.Development;
10
using osu.Framework.Graphics;
11
using osu.Framework.Graphics.Containers;
12
+using osu.Framework.Logging;
13
using osu.Framework.Timing;
14
using osu.Game.Input.Handlers;
15
using osu.Game.Screens.Play;
@@ -158,6 +159,7 @@ private void updateClock()
158
159
// time should never go backwards". If it does, we stop running gameplay until it returns to normal.
160
if (!hasReplayAttached && FrameStablePlayback && proposedTime > referenceClock.CurrentTime && !DebugUtils.IsNUnitRunning)
161
{
162
+ Logger.Log($"Denying backwards seek during gameplay (reference: {referenceClock.CurrentTime:N2} stable: {proposedTime:N2})");
163
state = PlaybackState.NotValid;
164
return;
165
}
0 commit comments