This commit is contained in:
Andrei Zavatski 2019-08-21 09:58:47 +03:00
parent a994ad9c84
commit a5acc913ea

View File

@ -14,7 +14,6 @@ using osu.Framework.Allocation;
using osu.Framework.Graphics.Colour; using osu.Framework.Graphics.Colour;
using osu.Game.Graphics; using osu.Game.Graphics;
using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Extensions.Color4Extensions;
using System.Linq;
namespace osu.Game.Screens.Play.HitErrorDisplay namespace osu.Game.Screens.Play.HitErrorDisplay
{ {
@ -154,7 +153,7 @@ namespace osu.Game.Screens.Play.HitErrorDisplay
private float getRelativeJudgementPosition(double value) => (float)(value / maxHitWindows); private float getRelativeJudgementPosition(double value) => (float)(value / maxHitWindows);
private double sum = 0; private double sum;
private float calculateArrowPosition(JudgementResult newJudgement) private float calculateArrowPosition(JudgementResult newJudgement)
{ {