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

@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Mods
[SettingSource("Final rate", "The final speed to ramp to")]
public abstract BindableNumber<double> FinalRate { get; }
public override string SettingDescription => $"{InitialRate.Value:0.#} to {FinalRate.Value:0.#}";
public override string SettingDescription => $"{InitialRate.Value:0.#} to {FinalRate.Value:N1}";
private double finalRateTime;
private double beginRampTime;