Formatting

This commit is contained in:
DrabWeb 2017-04-29 06:10:12 -03:00
parent c193a90a16
commit 3f73799975
1 changed files with 2 additions and 2 deletions

View File

@ -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;