mirror of https://github.com/ppy/osu
Use the length field instead of recalculating
This commit is contained in:
parent
574d9a51b3
commit
5f3f59629e
|
@ -291,7 +291,7 @@ private InfoLabel[] getInfoLabels()
|
|||
{
|
||||
Name = "Length",
|
||||
Icon = FontAwesome.Regular.Clock,
|
||||
Content = TimeSpan.FromMilliseconds(b.CalculateLength()).ToString(@"m\:ss"),
|
||||
Content = TimeSpan.FromMilliseconds(b.BeatmapInfo.Length).ToString(@"m\:ss"),
|
||||
}));
|
||||
|
||||
labels.Add(new InfoLabel(new BeatmapStatistic
|
||||
|
|
Loading…
Reference in New Issue