code fixes

This commit is contained in:
EVAST9919 2017-05-08 01:54:31 +03:00
parent c3a42ded36
commit dda25219bc
2 changed files with 2 additions and 11 deletions

View File

@ -140,7 +140,7 @@ namespace osu.Game.Screens.Play
return;
double currentTime = (AudioClock?.CurrentTime ?? Time.Current) - firstHitTime;
double progress = currentTime / (lastHitTime-firstHitTime);
double progress = currentTime / (lastHitTime - firstHitTime);
bar.UpdatePosition((float)progress);
graph.Progress = (int)(graph.ColumnCount * progress);

View File

@ -32,16 +32,7 @@ namespace osu.Game.Screens.Play
timeCurrentText.Text = TimeSpan.FromMilliseconds(value).ToString(@"m\:ss");
}
}
public double TimeLeft
{
set
{
if(timeCurrent < 0)
timeLeft.Text = @"-" + TimeSpan.FromMilliseconds(value + timeCurrent).ToString(@"m\:ss");
else
timeLeft.Text = @"-" + TimeSpan.FromMilliseconds(value).ToString(@"m\:ss");
}
}
public double TimeLeft { set { timeLeft.Text = @"-" + TimeSpan.FromMilliseconds((timeCurrent < 0) ? (value + timeCurrent) : value).ToString(@"m\:ss"); } }
public int Progress
{
set