From d74de657db064f662592db4840bc64d8e35e0046 Mon Sep 17 00:00:00 2001 From: Lorenzooone Date: Thu, 6 Mar 2025 22:52:08 +0100 Subject: [PATCH] Disable async by default for weaker devices (Pi) --- source/frontend.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/frontend.cpp b/source/frontend.cpp index cc9766d..bd58ac6 100755 --- a/source/frontend.cpp +++ b/source/frontend.cpp @@ -438,7 +438,11 @@ void reset_screen_info(ScreenInfo &info) { info.bot_rotation = 0; info.show_mouse = true; info.v_sync_enabled = false; + #ifdef RASPI + info.async = false; + #else info.async = true; + #endif info.top_scaling = DEFAULT_NO_SCALING_VALUE; info.bot_scaling = DEFAULT_NO_SCALING_VALUE; info.force_same_scaling = false;