mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 02:22:57 +08: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");
|
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
|
public int Progress
|
||||||
{
|
{
|
||||||
set
|
set
|
||||||
|
Loading…
Reference in New Issue
Block a user