1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

slight formatting

This commit is contained in:
Natelytle 2022-10-10 13:45:16 -04:00
parent 32adc1ec14
commit 430eb44446

View File

@ -75,8 +75,8 @@ namespace osu.Game.Rulesets.Mania.Difficulty
/// </summary>
private double customAccuracy()
{
if (totalHits==0)
return 0;
if (totalHits == 0)
return 0;
return (countPerfect * 320 + countGreat * 300 + countGood * 200 + countOk * 100 + countMeh * 50) / (totalHits * 320);
}