mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 08:22:56 +08:00
CI fixes
This commit is contained in:
parent
eacf2045f0
commit
c27909d53c
@ -139,7 +139,7 @@ namespace osu.Game.Screens.Play
|
||||
if (objects == null)
|
||||
return;
|
||||
|
||||
double currentTime = (AudioClock?.CurrentTime ?? Time.Current);
|
||||
double currentTime = AudioClock?.CurrentTime ?? Time.Current;
|
||||
double progress = (currentTime - firstHitTime) / lastHitTime;
|
||||
|
||||
bar.UpdatePosition((float)progress);
|
||||
|
@ -1,4 +1,7 @@
|
||||
using osu.Framework.Allocation;
|
||||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Primitives;
|
||||
|
Loading…
Reference in New Issue
Block a user