More inspections (rider is broken)

This commit is contained in:
smoogipoo
2020-08-07 21:14:45 +09:00
parent 961c6dab54
commit b08ebe6f81
2 changed files with 2 additions and 5 deletions

View File

@ -4,7 +4,6 @@
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Input.Events;
using osu.Framework.Timing;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Screens.Edit;
@ -44,7 +43,7 @@ namespace osu.Game.Tests.Visual
private void beatmapChanged(ValueChangedEvent<WorkingBeatmap> e)
{
Clock.ControlPointInfo = e.NewValue.Beatmap.ControlPointInfo;
Clock.ChangeSource((IAdjustableClock)MusicController.CurrentTrack);
Clock.ChangeSource(MusicController.CurrentTrack);
Clock.ProcessFrame();
}