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
1 changed files with 1 additions and 0 deletions

View File

@ -148,6 +148,7 @@ protected override void Update()
}
clock.CurrentTime = newTime.Value;
Clock.ProcessFrame();
}
requireMoreUpdateLoops = clock.CurrentTime != parentClock.CurrentTime;