diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2024-07-29 09:20:50 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuya@meta.com> | 2024-07-29 09:20:50 -0700 |
commit | 30d63e8ab90f8793868bf410370624fc9f789987 (patch) | |
tree | dcb0762890184c09da1f348c9a70587ee83668e9 | |
parent | 0e9caa2d9cb20737f8dcf08b75fcf2a78d980569 (diff) | |
download | redot-engine-30d63e8ab90f8793868bf410370624fc9f789987.tar.gz |
Fix the crash that occurs on termination of the Godot engine on Android
-rw-r--r-- | platform/android/java_godot_lib_jni.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/android/java_godot_lib_jni.cpp b/platform/android/java_godot_lib_jni.cpp index fec317ecb8..ec42e5bbd8 100644 --- a/platform/android/java_godot_lib_jni.cpp +++ b/platform/android/java_godot_lib_jni.cpp @@ -83,6 +83,10 @@ static Vector3 magnetometer; static Vector3 gyroscope; static void _terminate(JNIEnv *env, bool p_restart = false) { + if (step.get() == STEP_TERMINATED) { + return; + } + step.set(STEP_TERMINATED); // Ensure no further steps are attempted and no further events are sent // lets cleanup |