1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:37:28 +08:00

Allow FrameStabilityContainer to continue updating while paused during replay playback

This commit is contained in:
Dean Herbert 2024-01-18 14:15:22 +09:00
parent 2afa4c7e1c
commit e73910571f
No known key found for this signature in database

View File

@ -122,7 +122,7 @@ namespace osu.Game.Rulesets.UI
// 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;