mirror of
https://github.com/ppy/osu
synced 2025-01-09 23:59:44 +00:00
CI fixes
This commit is contained in:
parent
dda25219bc
commit
926ed907c2
@ -32,7 +32,7 @@ namespace osu.Game.Screens.Play
|
||||
timeCurrentText.Text = TimeSpan.FromMilliseconds(value).ToString(@"m\:ss");
|
||||
}
|
||||
}
|
||||
public double TimeLeft { set { timeLeft.Text = @"-" + TimeSpan.FromMilliseconds((timeCurrent < 0) ? (value + timeCurrent) : value).ToString(@"m\:ss"); } }
|
||||
public double TimeLeft { set { timeLeft.Text = @"-" + TimeSpan.FromMilliseconds(timeCurrent < 0 ? value + timeCurrent : value).ToString(@"m\:ss"); } }
|
||||
public int Progress
|
||||
{
|
||||
set
|
||||
|
Loading…
Reference in New Issue
Block a user