Use milliseconds for BasicStats' beatmap length

This commit is contained in:
iiSaLMaN 2019-07-10 16:49:32 +03:00
parent 1eed6955fa
commit c3315e805f
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}