mirror of
https://github.com/osukey/osukey.git
synced 2025-06-08 12:58:01 +09:00
code fixes
This commit is contained in:
parent
c3a42ded36
commit
dda25219bc
@ -32,16 +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
|
public double TimeLeft { set { timeLeft.Text = @"-" + TimeSpan.FromMilliseconds((timeCurrent < 0) ? (value + timeCurrent) : value).ToString(@"m\:ss"); } }
|
||||||
{
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if(timeCurrent < 0)
|
|
||||||
timeLeft.Text = @"-" + TimeSpan.FromMilliseconds(value + timeCurrent).ToString(@"m\:ss");
|
|
||||||
else
|
|
||||||
timeLeft.Text = @"-" + TimeSpan.FromMilliseconds(value).ToString(@"m\:ss");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public int Progress
|
public int Progress
|
||||||
{
|
{
|
||||||
set
|
set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user