mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 11:42:56 +08:00
Use milliseconds for BasicStats' beatmap length
This commit is contained in:
parent
1eed6955fa
commit
c3315e805f
@ -60,7 +60,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
||||
}
|
||||
else
|
||||
{
|
||||
length.Value = TimeSpan.FromSeconds(beatmap.Length).ToString(@"m\:ss");
|
||||
length.Value = TimeSpan.FromMilliseconds(beatmap.Length).ToString(@"m\:ss");
|
||||
circleCount.Value = beatmap.OnlineInfo.CircleCount.ToString();
|
||||
sliderCount.Value = beatmap.OnlineInfo.SliderCount.ToString();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user