From 3f737999757831787be186f14f4ce687e690e31c Mon Sep 17 00:00:00 2001 From: DrabWeb Date: Sat, 29 Apr 2017 06:10:12 -0300 Subject: [PATCH] Formatting --- osu.Game/Overlays/MusicController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Overlays/MusicController.cs b/osu.Game/Overlays/MusicController.cs index def2c7c416..450ea74133 100644 --- a/osu.Game/Overlays/MusicController.cs +++ b/osu.Game/Overlays/MusicController.cs @@ -30,7 +30,7 @@ namespace osu.Game.Overlays public class MusicController : FocusedOverlayContainer { private const float player_height = 130; - private const float playlist_height = 510; + private const float playlist_height = 510; private Drawable currentBackground; private DragBar progress; private Button playButton; @@ -292,7 +292,7 @@ private void next() int n = playListIndex + 1; if (n >= playList.Count) - n = 0; + n = 0; play(playList[n].Beatmaps[0], true); playListIndex = n;