From b2bfd46421c34c6d41937ee5b83d4f2971b825df Mon Sep 17 00:00:00 2001 From: artdeell Date: Fri, 3 Mar 2023 17:34:17 +0300 Subject: [PATCH] Make isInputReady non-volatile The original issue causing it is gone now --- app_pojavlauncher/src/main/jni/utils.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app_pojavlauncher/src/main/jni/utils.h b/app_pojavlauncher/src/main/jni/utils.h index 9ced63c7f..7c7b148d7 100644 --- a/app_pojavlauncher/src/main/jni/utils.h +++ b/app_pojavlauncher/src/main/jni/utils.h @@ -11,8 +11,7 @@ static JNIEnv* dalvikJNIEnvPtr_ANDROID; static long showingWindow; -static volatile bool isInputReady; -static bool isCursorEntered, isPrepareGrabPos, isUseStackQueueCall; +static bool isInputReady, isCursorEntered, isPrepareGrabPos, isUseStackQueueCall; static int savedWidth, savedHeight;