use N1 format instead of 0.#

This commit is contained in:
Liam DeVoe
2020-03-22 22:54:21 -04:00
parent 889608a408
commit 1da590c63f
6 changed files with 9 additions and 9 deletions

View File

@ -35,8 +35,8 @@ namespace osu.Game.Rulesets.Catch.Mods
{
get
{
string circleSize = CircleSize.IsDefault ? string.Empty : $"CS {CircleSize.Value:0.#}";
string approachRate = ApproachRate.IsDefault ? string.Empty : $"AR {ApproachRate.Value:0.#}";
string circleSize = CircleSize.IsDefault ? string.Empty : $"CS {CircleSize.Value:N1}";
string approachRate = ApproachRate.IsDefault ? string.Empty : $"AR {ApproachRate.Value:N1}";
return string.Join(", ", new[]
{