mirror of https://github.com/ppy/osu
Never set `waitingOnFrames` if a replay is not attached
This commit is contained in:
parent
57daaa7fed
commit
65ce4ca390
|
@ -189,7 +189,7 @@ private void updateClock()
|
|||
double timeBehind = Math.Abs(proposedTime - referenceClock.CurrentTime);
|
||||
|
||||
isCatchingUp.Value = timeBehind > 200;
|
||||
waitingOnFrames.Value = state == PlaybackState.NotValid;
|
||||
waitingOnFrames.Value = hasReplayAttached && state == PlaybackState.NotValid;
|
||||
|
||||
manualClock.CurrentTime = proposedTime;
|
||||
manualClock.Rate = Math.Abs(referenceClock.Rate) * direction;
|
||||
|
|
Loading…
Reference in New Issue