mirror of https://github.com/ppy/osu
Fix countdown sounds playing every minute, rather than only on the last minute
This commit is contained in:
parent
b9642a13c8
commit
c4c62ff4e7
|
@ -106,7 +106,7 @@ void onCountdownTick()
|
|||
{
|
||||
updateButtonText();
|
||||
|
||||
int secondsRemaining = countdownTimeRemaining.Seconds;
|
||||
int secondsRemaining = (int)countdownTimeRemaining.TotalSeconds;
|
||||
|
||||
playTickSound(secondsRemaining);
|
||||
|
||||
|
|
Loading…
Reference in New Issue