Skip to content

Commit

Permalink
Merge pull request #30572 from Joehuu/fix-break-overlay-grades
Browse files Browse the repository at this point in the history
Fix break overlay grades not using localised string
  • Loading branch information
peppy authored Nov 10, 2024
2 parents e201636 + 9acfb3c commit 4aa3516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Screens/Play/Break/BreakInfoLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private void load(OsuColour colours)
protected virtual LocalisableString Format(T count)
{
if (count is Enum countEnum)
return countEnum.GetDescription();
return countEnum.GetLocalisableDescription();

return count.ToString() ?? string.Empty;
}
Expand Down

0 comments on commit 4aa3516

Please sign in to comment.