From 6219b8e6ddba43944520c35ddcdd6febcdd6a267 Mon Sep 17 00:00:00 2001 From: MrTheMake Date: Sun, 21 May 2017 20:27:41 +0200 Subject: [PATCH] Fixed an error with looping --- osu.Game/Screens/Select/PlaySongSelect.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); }