Fix incorrect value being set

This commit is contained in:
smoogipoo 2020-08-05 21:29:53 +09:00
parent 11a6c9bdcc
commit f058f5e977
1 changed files with 1 additions and 1 deletions

View File

@ -654,7 +654,7 @@ private void updateComponentFromBeatmap(WorkingBeatmap beatmap)
BeatmapDetails.Beatmap = beatmap;
if (music?.CurrentTrack != null)
music.CurrentTrack.Looping = false;
music.CurrentTrack.Looping = true;
}
private readonly WeakReference<ITrack> lastTrack = new WeakReference<ITrack>(null);