1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +08:00

Fix replay clock always running 1 frame behind

* Fixes swells never completing.
* Fixes forward playback missing notes every now and then.
* Probably more stuff.
This commit is contained in:
smoogipoo 2017-11-13 17:52:16 +09:00
parent 615984ca9c
commit 0cec51110a

View File

@ -148,6 +148,7 @@ namespace osu.Game.Rulesets.UI
}
clock.CurrentTime = newTime.Value;
Clock.ProcessFrame();
}
requireMoreUpdateLoops = clock.CurrentTime != parentClock.CurrentTime;