diff --git a/osu.Game/Screens/Select/PlaySongSelect.cs b/osu.Game/Screens/Select/PlaySongSelect.cs index 8415fdfc34..59cc325b57 100644 --- a/osu.Game/Screens/Select/PlaySongSelect.cs +++ b/osu.Game/Screens/Select/PlaySongSelect.cs @@ -71,7 +71,10 @@ namespace osu.Game.Screens.Select protected override void OnResuming(Screen last) { player = null; - Beatmap.Track.Looping = false; + + Beatmap.Track.Reset(); + Beatmap.Track.Start(); + Beatmap.Track.Looping = true; base.OnResuming(last); }