Convert length retrieved from online to milliseconds

This commit is contained in:
iiSaLMaN
2019-07-09 17:53:34 +03:00
parent 1485c273ab
commit e73f22eff8
3 changed files with 4 additions and 3 deletions

View File

@ -180,7 +180,7 @@ namespace osu.Game.Tournament.Components
panelContents.Children = new Drawable[]
{
new DiffPiece(("Length", TimeSpan.FromSeconds(length).ToString(@"mm\:ss")))
new DiffPiece(("Length", TimeSpan.FromMilliseconds(length).ToString(@"mm\:ss")))
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.BottomLeft,