1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Tab character

This commit is contained in:
DrabWeb 2017-05-23 14:46:23 -03:00
parent aa9a636c3c
commit 7a4b476121

View File

@ -176,7 +176,7 @@ namespace osu.Game.Overlays
private string pluralize(string prefix, int value)
{
return $@"{value} {prefix}" + (value == 1 ? string.Empty : @"s");
return $@"{value} {prefix}" + (value == 1 ? string.Empty : @"s");
}
private void recreatePanels(PanelDisplayStyle displayStyle)