1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 09:23:06 +08:00

fix capitalzation of osu!catch HitResults

This commit is contained in:
Susko3 2021-05-28 18:40:58 +02:00
parent 972bd11ea9
commit 2439de1c3d

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);