1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 15:00:44 +08:00

fix capitalzation of osu!catch HitResults

This commit is contained in:
Susko3
2021-05-28 18:40:58 +02:00
Unverified
parent 972bd11ea9
commit 2439de1c3d
+3 -3
View File
@@ -161,13 +161,13 @@ namespace osu.Game.Rulesets.Catch
switch (result)
{
case HitResult.LargeTickHit:
return "large droplet";
return "Large droplet";
case HitResult.SmallTickHit:
return "small droplet";
return "Small droplet";
case HitResult.LargeBonus:
return "banana";
return "Banana";
}
return base.GetDisplayNameForHitResult(result);