update tracy to v0.9 and adopt

This commit is contained in:
2022-10-27 16:36:40 +02:00
parent cc40740cf1
commit 5004e30e18
6 changed files with 17 additions and 17 deletions

View File

@ -69,11 +69,11 @@ void Engine::cleanup(void) {
}
void Engine::update(void) {
FrameMarkStart("update")
FrameMarkStart("update");
_update_strategy->doUpdate(*this);
FrameMarkEnd("update")
FrameMarkEnd("update");
}
#ifdef __EMSCRIPTEN__