diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-02-19 13:42:27 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-02-19 13:42:27 +0200 |
commit | fc49964de47c420c7cc3344776ea4158f586ad9e (patch) | |
tree | 3f5ef15d4b2c99aa7e38950a5584ba57226121da /platform/android/export | |
parent | a92921ae49290370b43f2302853c7af19d22e8c0 (diff) | |
download | redot-engine-fc49964de47c420c7cc3344776ea4158f586ad9e.tar.gz |
Fix crash on documentation generation on macOS.
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index a485b57a64..28ab8e3335 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -830,8 +830,9 @@ bool EditorExportPlatformAndroid::_uses_vulkan() { void EditorExportPlatformAndroid::_notification(int p_what) { #ifndef ANDROID_ENABLED if (p_what == NOTIFICATION_POSTINITIALIZE) { - ERR_FAIL_NULL(EditorExport::get_singleton()); - EditorExport::get_singleton()->connect_presets_runnable_updated(callable_mp(this, &EditorExportPlatformAndroid::_update_preset_status)); + if (EditorExport::get_singleton()) { + EditorExport::get_singleton()->connect_presets_runnable_updated(callable_mp(this, &EditorExportPlatformAndroid::_update_preset_status)); + } } #endif } |