Fix looping not being checked

This commit is contained in:
smoogipoo 2019-02-27 17:03:09 +09:00
parent 30815ace62
commit 1006c539be
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ private void beatmapChanged(ValueChangedEvent<WorkingBeatmap> beatmap)
private void currentTrackCompleted() => Schedule(() =>
{
if (!beatmap.Disabled && beatmapSets.Any())
if (!current.Track.Looping && !beatmap.Disabled && beatmapSets.Any())
next();
});