From 6d9e11a74f8ff7be393e340d3ae80744b0b6eae2 Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Sat, 13 May 2017 03:10:13 +0300 Subject: [PATCH] CI fixes --- osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinner.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinner.cs b/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinner.cs index 2586f246e5..59a381149c 100644 --- a/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinner.cs +++ b/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinner.cs @@ -10,7 +10,6 @@ using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces; using OpenTK; using OpenTK.Graphics; using osu.Game.Rulesets.Osu.UI; -using osu.Game.Beatmaps; using osu.Framework.Allocation; namespace osu.Game.Rulesets.Osu.Objects.Drawables @@ -24,7 +23,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables private readonly Container circleContainer; private readonly DrawableHitCircle circle; - private float beatmapOD; + private float beatmapOd; public DrawableSpinner(Spinner s) : base(s) { @@ -78,7 +77,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables [BackgroundDependencyLoader(permitNulls: true)] private void load(OsuGame game) { - beatmapOD = game?.Beatmap?.Value.Beatmap.BeatmapInfo.Difficulty.OverallDifficulty ?? 5; + beatmapOd = game?.Beatmap?.Value.Beatmap.BeatmapInfo.Difficulty.OverallDifficulty ?? 5; } protected override void CheckJudgement(bool userTriggered) @@ -118,7 +117,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables private Vector2 scaleToCircle => circle.Scale * circle.DrawWidth / DrawWidth * 0.95f; - private float spinsPerMinuteNeeded => 100 + beatmapOD * 15; + private float spinsPerMinuteNeeded => 100 + beatmapOd * 15; private float rotationsNeeded => (float)(spinsPerMinuteNeeded * (spinner.EndTime - spinner.StartTime) / 60000f);