From 24563de68fc182de98a70dc8d307e69d1ff2f12e Mon Sep 17 00:00:00 2001 From: Lorenzooone Date: Fri, 2 May 2025 15:56:13 +0200 Subject: [PATCH] Disable Async by default on Android --- source/frontend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/frontend.cpp b/source/frontend.cpp index 2b06e98..cea53d6 100755 --- a/source/frontend.cpp +++ b/source/frontend.cpp @@ -570,7 +570,7 @@ void reset_screen_info(ScreenInfo &info) { info.bot_rotation = 0; info.show_mouse = true; info.v_sync_enabled = false; - #ifdef RASPI + #if (defined(RASPI) || defined(ANDROID_COMPILATION)) info.async = false; #else info.async = true;