mirror of https://github.com/ppy/osu
CI fixes.
This commit is contained in:
parent
c8a1933874
commit
874db28478
|
@ -195,7 +195,7 @@ protected override void LoadComplete()
|
|||
FadeInFromZero(250, EasingTypes.OutQuint);
|
||||
}
|
||||
|
||||
private bool hasExpired = false;
|
||||
private bool hasExpired;
|
||||
protected override void Update()
|
||||
{
|
||||
base.Update();
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
// 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.Graphics;
|
||||
using osu.Game.Rulesets.Timing;
|
||||
|
||||
namespace osu.Game.Rulesets.Mania.Timing
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
// 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.Graphics;
|
||||
using osu.Game.Rulesets.Timing;
|
||||
|
||||
namespace osu.Game.Rulesets.Mania.Timing
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
// 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.Graphics;
|
||||
using osu.Game.Rulesets.Timing;
|
||||
|
||||
namespace osu.Game.Rulesets.Mania.Timing
|
||||
|
|
|
@ -7,9 +7,6 @@
|
|||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Game.Rulesets.Objects.Drawables;
|
||||
using OpenTK;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using osu.Game.Rulesets.Objects.Types;
|
||||
|
||||
namespace osu.Game.Rulesets.Timing
|
||||
{
|
||||
|
@ -51,7 +48,7 @@ public Bindable<double> VisibleTimeRange
|
|||
/// <param name="controlPoint">The <see cref="MultiplierControlPoint"/> which provides the speed adjustments for this container.</param>
|
||||
protected SpeedAdjustmentContainer(MultiplierControlPoint controlPoint)
|
||||
{
|
||||
this.ControlPoint = controlPoint;
|
||||
ControlPoint = controlPoint;
|
||||
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue