mirror of
https://github.com/ppy/osu
synced 2025-01-24 14:53:18 +00:00
Fix redundant paranthesis
This commit is contained in:
parent
7e07a07c01
commit
9b6f5c9097
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user