mirror of
https://github.com/ppy/osu.git
synced 2025-03-22 22:17:46 +08:00
CI fixes
This commit is contained in:
parent
2c92ee432b
commit
315f1f1256
@ -25,7 +25,7 @@ namespace osu.Game.Screens.Play
|
||||
private int previousSecond;
|
||||
private bool defaultsSetted;
|
||||
|
||||
private const int margin = 10;
|
||||
private const int margin = 10;
|
||||
|
||||
public IClock AudioClock;
|
||||
|
||||
@ -97,7 +97,7 @@ namespace osu.Game.Screens.Play
|
||||
timeLeft.Text = @"-" + TimeSpan.FromMilliseconds(endTime - AudioClock.CurrentTime).ToString(@"m\:ss");
|
||||
}
|
||||
|
||||
int currentPercent = (int)((songCurrentTime / (endTime - startTime)) * 100);
|
||||
int currentPercent = (int)(songCurrentTime / (endTime - startTime) * 100);
|
||||
|
||||
if (currentPercent != previousPercent)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user