Make testcase work on appveyor (no BASS)

This commit is contained in:
smoogipoo 2018-06-15 15:38:19 +09:00 committed by Dean Herbert
parent e0ee5e2085
commit 08f172ba98
1 changed files with 3 additions and 1 deletions

View File

@ -88,6 +88,8 @@ private void load(IAdjustableClock adjustableClock, IBindableBeatmap beatmap)
protected override void Update()
{
base.Update();
if (beatmap.Value.Track.IsLoaded)
marker.X = (float)(adjustableClock.CurrentTime / beatmap.Value.Track.Length);
}
}