1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

End benchmark of Main::Setup properly before calling setup2

This commit is contained in:
Alvin Wong
2024-07-21 21:43:29 +08:00
parent e25f3c0d38
commit baf1cdabd1

View File

@@ -2459,11 +2459,12 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
}
#endif
OS::get_singleton()->benchmark_end_measure("Startup", "Main::Setup");
if (p_second_phase) {
return setup2();
}
OS::get_singleton()->benchmark_end_measure("Startup", "Main::Setup");
return OK;
error: