diff options
author | Miguel de Icaza <miguel@gnome.org> | 2024-03-19 15:17:43 -0400 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-13 11:18:53 +0200 |
commit | 3ea7dec7d34900acf517d9be4e46f1a501f36e5a (patch) | |
tree | 3c49d06d59305d2f6d45f654487c7376bca93018 /platform/ios | |
parent | 029aadef563fb69cf49aa9795b62f27171f8c3f4 (diff) | |
download | redot-engine-3ea7dec7d34900acf517d9be4e46f1a501f36e5a.tar.gz |
Fix the initialization order for the iOS driver
The problem is that we were initializating the main loop (SceneTree)
when we were supposed to just set it. Which would cascade into a
series of issues, including having the EditorNode being flagged as
"inside_tree" and having a tree, before it was supposed to.
This meant that some code would assume it was fully initialized, when
it was not. And this manifested as the project not being scanned for
resources, which meant that during the importing, the resources would
not match using the uid path, and produce lots of errors.
One line fix
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/os_ios.mm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/platform/ios/os_ios.mm b/platform/ios/os_ios.mm index c989dc6221..bcf21bc802 100644 --- a/platform/ios/os_ios.mm +++ b/platform/ios/os_ios.mm @@ -149,10 +149,6 @@ void OS_IOS::deinitialize_modules() { void OS_IOS::set_main_loop(MainLoop *p_main_loop) { main_loop = p_main_loop; - - if (main_loop) { - main_loop->initialize(); - } } MainLoop *OS_IOS::get_main_loop() const { @@ -181,7 +177,9 @@ bool OS_IOS::iterate() { } void OS_IOS::start() { - Main::start(); + if (Main::start() == EXIT_SUCCESS) { + main_loop->initialize(); + } if (joypad_ios) { joypad_ios->start_processing(); |