From 49f5364e9e4434d72fa417af8d9b4665747cd9f0 Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Sun, 14 May 2017 07:35:23 +0300 Subject: [PATCH] CI fixes --- osu.Game/Graphics/Cursor/GameplayCursor.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osu.Game/Graphics/Cursor/GameplayCursor.cs b/osu.Game/Graphics/Cursor/GameplayCursor.cs index ab2f36e45a..5aa3ae8326 100644 --- a/osu.Game/Graphics/Cursor/GameplayCursor.cs +++ b/osu.Game/Graphics/Cursor/GameplayCursor.cs @@ -1,7 +1,6 @@ // Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE -using System; using OpenTK; using OpenTK.Graphics; using osu.Framework.Allocation; @@ -48,7 +47,7 @@ namespace osu.Game.Graphics.Cursor private float beatmapCircleSize; private const float default_beatmap_cs = 5f; - private float autoScaleMultiplier => autoCursorScale ? (float)(1 - (0.7 * (beatmapCircleSize - 4) / 5)) : 1f; + private float autoScaleMultiplier => autoCursorScale ? (float)(1 - 0.7 * (beatmapCircleSize - 4) / 5) : 1f; public OsuCursor()