1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:12:56 +08:00

Line endings, use ToString for statistic value

This commit is contained in:
DrabWeb 2017-05-19 20:37:13 -03:00
parent ffb3450dc2
commit 6e7a09fedb
2 changed files with 17 additions and 17 deletions

View File

@ -54,7 +54,7 @@ namespace osu.Game.Overlays.Direct
set set
{ {
this.value = value; this.value = value;
text.Text = string.Format(@"{0:n0}", Value); text.Text = Value.ToString(@"N0");
} }
} }