diff --git a/osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/MarkerPart.cs b/osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/MarkerPart.cs index 115aa60446..d4a1177c4f 100644 --- a/osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/MarkerPart.cs +++ b/osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/MarkerPart.cs @@ -62,9 +62,7 @@ namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts { base.Update(); - if (Beatmap.Value == null) - return; - marker.X = (float)Beatmap.Value.Track.CurrentTime; + marker.X = (float)(Beatmap.Value?.Track.CurrentTime ?? 0); } private class MarkerVisualisation : CompositeDrawable