Removed ununsed variables

This commit is contained in:
MrTheMake 2017-06-19 16:33:08 +02:00
parent cb8b3cb8fb
commit 8bee06943b

View File

@ -39,9 +39,7 @@ namespace osu.Game.Overlays
private Drawable currentBackground; private Drawable currentBackground;
private DragBar progressBar; private DragBar progressBar;
private IconButton prevButton;
private IconButton playButton; private IconButton playButton;
private IconButton nextButton;
private IconButton playlistButton; private IconButton playlistButton;
private SpriteText title, artist; private SpriteText title, artist;
@ -155,7 +153,7 @@ namespace osu.Game.Overlays
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Children = new[] Children = new[]
{ {
prevButton = new IconButton new IconButton
{ {
Action = prev, Action = prev,
Icon = FontAwesome.fa_step_backward, Icon = FontAwesome.fa_step_backward,
@ -167,7 +165,7 @@ namespace osu.Game.Overlays
Action = play, Action = play,
Icon = FontAwesome.fa_play_circle_o, Icon = FontAwesome.fa_play_circle_o,
}, },
nextButton = new IconButton new IconButton
{ {
Action = next, Action = next,
Icon = FontAwesome.fa_step_forward, Icon = FontAwesome.fa_step_forward,