Take MusicController back to life

This commit is contained in:
ColdVolcano
2017-04-23 00:13:58 -05:00
parent db72bfe03b
commit 1d254f4a56
2 changed files with 4 additions and 3 deletions

View File

@ -22,6 +22,7 @@ using osu.Game.Database;
using osu.Game.Graphics;
using osu.Framework.Graphics.Primitives;
using osu.Game.Graphics.Sprites;
using osu.Framework.Extensions;
using osu.Framework.Extensions.Color4Extensions;
namespace osu.Game.Overlays
@ -293,7 +294,7 @@ namespace osu.Game.Overlays
trackManager.SetExclusive(current.Track);
current.Track.Start();
beatmapSource.Value = current;
});
}).ContinueWith(task => Schedule(() => task.ThrowIfFaulted()));
updateDisplay(current, isNext ? TransformDirection.Next : TransformDirection.Prev);
}