TestExecutor::executeAll accepts ticks, not microseconds

This commit is contained in:
kifir 2024-04-30 22:28:58 +03:00
parent 60ee7f0fcc
commit 94f40c6cc9
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ void EngineTestHelper::clearQueue() {
}
int EngineTestHelper::executeActions() {
return engine.executor.executeAll(getTimeNowUs());
return engine.executor.executeAll(US2NT(getTimeNowUs()));
}
void EngineTestHelper::moveTimeForwardMs(float deltaTimeMs) {