diff options
author | Fredia Huya-Kouadio <fhuya@fb.com> | 2022-08-15 13:18:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 13:18:06 -0700 |
commit | 6883e97ff042164669cba9a29467bb1e7e62c60a (patch) | |
tree | 5a6fe2786c2bb460f6a6e22fdfe50cc958055fd7 /platform/ios/export/export_plugin.h | |
parent | 4dbb6ecc214375e107427976c19206563a810a43 (diff) | |
parent | 44dc24ec38b9853a73e53cb80263ff4748ecc7e7 (diff) | |
download | redot-engine-6883e97ff042164669cba9a29467bb1e7e62c60a.tar.gz |
Merge pull request #64421 from m4gr3d/investigate_read_write_access_loss_main
Fix issue preventing the Android Editor from displaying the project content
Diffstat (limited to 'platform/ios/export/export_plugin.h')
-rw-r--r-- | platform/ios/export/export_plugin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/ios/export/export_plugin.h b/platform/ios/export/export_plugin.h index 8079eda8f6..abda8e218a 100644 --- a/platform/ios/export/export_plugin.h +++ b/platform/ios/export/export_plugin.h @@ -57,8 +57,10 @@ class EditorExportPlatformIOS : public EditorExportPlatform { // Plugins SafeFlag plugins_changed; +#ifndef ANDROID_ENABLED Thread check_for_changes_thread; SafeFlag quit_request; +#endif Mutex plugins_lock; Vector<PluginConfigIOS> plugins; @@ -139,6 +141,7 @@ class EditorExportPlatformIOS : public EditorExportPlatform { return true; } +#ifndef ANDROID_ENABLED static void _check_for_changes_poll_thread(void *ud) { EditorExportPlatformIOS *ea = static_cast<EditorExportPlatformIOS *>(ud); @@ -172,6 +175,7 @@ class EditorExportPlatformIOS : public EditorExportPlatform { } } } +#endif protected: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) const override; |