mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
Reword comment slightly
This commit is contained in:
parent
8e543204cd
commit
3d8ae0465f
@ -73,8 +73,9 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
|
||||
{
|
||||
// The remaining time on a countdown may be at a fractional portion between two seconds.
|
||||
// We want to align certain audio/visual cues to the point at which integer seconds change.
|
||||
// To do so, we schedule to the next whole second.
|
||||
// Note that scheduler invocation isn't guaranteed to be accurate, so this may still occur slightly late.
|
||||
// To do so, we schedule to the next whole second. Note that scheduler invocation isn't
|
||||
// guaranteed to be accurate, so this may still occur slightly late, but even in such a case
|
||||
// the next invocation will be roughly correct.
|
||||
double timeToNextSecond = countdownTimeRemaining.TotalMilliseconds % 1000;
|
||||
|
||||
countdownUpdateDelegate = Scheduler.AddDelayed(onCountdownTick, timeToNextSecond);
|
||||
|
Loading…
Reference in New Issue
Block a user