From 7e84f9ef59314375ff9b626e83c1870173ee14b1 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 11 May 2026 22:03:19 +0200 Subject: [PATCH] [common] Revert back Aync GPU default to true to fix flickering on Linux (#3946) The cause of the flickering needs to be investigated but this will set it ON as default for desktop platforms. Co-authored-by: lizzie Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3946 Reviewed-by: crueter Reviewed-by: Lizzie Reviewed-by: CamilleLaVey --- src/common/settings.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/common/settings.h b/src/common/settings.h index fc347a197e..e10f5105a1 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -388,8 +388,13 @@ struct Values { true, true}; - SwitchableSetting use_asynchronous_gpu_emulation{ - linkage, false, "use_asynchronous_gpu_emulation", Category::Renderer}; + SwitchableSetting use_asynchronous_gpu_emulation{linkage, +#ifdef __ANDROID__ + false, +#else + true, +#endif + "use_asynchronous_gpu_emulation", Category::Renderer}; // *nix platforms may have issues with the borderless windowed fullscreen mode. // Default to exclusive fullscreen on these platforms for now. SwitchableSetting fullscreen_mode{linkage,