Update assertion to also check `GameplayClockContainer`'s current time

This commit is contained in:
Dean Herbert 2023-02-22 15:26:09 +09:00
parent a511e64fa5
commit f61fbcf3fc
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ private void seekBeforeIndex(int index)
}
private void waitForCatchUp() =>
AddUntilStep("wait for frame stable clock to catch up", () => Precision.AlmostEquals(Beatmap.Value.Track.CurrentTime, Player.DrawableRuleset.FrameStableClock.CurrentTime));
AddUntilStep("wait for frame stable clock to catch up", () => Precision.AlmostEquals(Player.GameplayClockContainer.CurrentTime, Player.DrawableRuleset.FrameStableClock.CurrentTime));
private void waitForAliveObjectIndex(int? index)
{