mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 14:32:55 +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
|
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();
|
circleCount.Value = beatmap.OnlineInfo.CircleCount.ToString();
|
||||||
sliderCount.Value = beatmap.OnlineInfo.SliderCount.ToString();
|
sliderCount.Value = beatmap.OnlineInfo.SliderCount.ToString();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user