Fix redundant paranthesis

This commit is contained in:
Hanamuke 2018-09-13 17:29:10 +02:00
parent 7e07a07c01
commit 9b6f5c9097

View File

@ -109,7 +109,7 @@ namespace osu.Game.Rulesets.Catch.UI
public static float GetCatcherSize(BeatmapDifficulty difficulty)
{
return (CATCHER_SIZE / CatchPlayfield.BASE_WIDTH) * (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5);
return CATCHER_SIZE / CatchPlayfield.BASE_WIDTH * (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5);
}
public class Catcher : Container, IKeyBindingHandler<CatchAction>