Formatting and remove magic number

This commit is contained in:
DrabWeb
2017-05-19 20:13:59 -03:00
parent 83c81c0626
commit e7a64126a3
3 changed files with 7 additions and 5 deletions

View File

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