diff --git a/osu.Game/Screens/Play/SongProgress.cs b/osu.Game/Screens/Play/SongProgress.cs index 19212ec2f4..33acc998d6 100644 --- a/osu.Game/Screens/Play/SongProgress.cs +++ b/osu.Game/Screens/Play/SongProgress.cs @@ -132,6 +132,9 @@ namespace osu.Game.Screens.Play { base.Update(); + if (objects == null) + return; + double progress = (AudioClock?.CurrentTime ?? Time.Current) / lastHitTime; bar.UpdatePosition((float)progress);