mirror of https://github.com/ppy/osu
Allow `FrameStabilityContainer` to continue updating while paused during replay playback
This commit is contained in:
parent
2afa4c7e1c
commit
e73910571f
|
@ -122,7 +122,7 @@ private void updateClock()
|
|||
// if waiting on frames, run one update loop to determine if frames have arrived.
|
||||
state = PlaybackState.Valid;
|
||||
}
|
||||
else if (IsPaused.Value)
|
||||
else if (IsPaused.Value && !hasReplayAttached)
|
||||
{
|
||||
// time should not advance while paused, nor should anything run.
|
||||
state = PlaybackState.NotValid;
|
||||
|
|
Loading…
Reference in New Issue