Changed logic a bit

This commit is contained in:
EVAST9919
2017-05-08 19:14:19 +03:00
parent ae2186970c
commit 4b5e24cc36
2 changed files with 21 additions and 11 deletions

View File

@ -45,6 +45,7 @@ namespace osu.Game.Screens.Play
set
{
graph.Objects = objects = value;
info.SongLenght = lastHitTime - firstHitTime;
}
}
@ -146,8 +147,7 @@ namespace osu.Game.Screens.Play
graph.Progress = (int)(graph.ColumnCount * progress);
info.Progress = (int)(progress * 100);
info.TimeCurrent = currentTime;
info.TimeLeft = lastHitTime - firstHitTime - currentTime;
info.CurrentTime = currentTime;
}
}
}