mirror of https://github.com/ppy/osu
Use milliseconds for BasicStats' beatmap length
This commit is contained in:
parent
1eed6955fa
commit
c3315e805f
|
@ -60,7 +60,7 @@ private void updateDisplay()
|
|||
}
|
||||
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