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

use two decimal points for ModRateAdjust format

This commit is contained in:
Liam DeVoe 2020-03-22 23:08:00 -04:00
parent 5cc626d37b
commit 64fc116d67

View File

@ -16,6 +16,6 @@ namespace osu.Game.Rulesets.Mods
track.AddAdjustment(AdjustableProperty.Tempo, SpeedChange);
}
public override string SettingDescription => SpeedChange.IsDefault ? string.Empty : $"{SpeedChange.Value:N1}x";
public override string SettingDescription => SpeedChange.IsDefault ? string.Empty : $"{SpeedChange.Value:N2}x";
}
}