From 181a725b046e4237a46e2cd1f51cb93f8da67a55 Mon Sep 17 00:00:00 2001 From: DraVee Date: Fri, 13 Feb 2026 18:17:59 +0100 Subject: [PATCH] chore: just a if for Android/Apple and a else for the reset --- src/common/settings.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/settings.h b/src/common/settings.h index 6525ccd5e6..9a7d3a30d3 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -568,9 +568,7 @@ struct Values { Category::RendererHacks}; SwitchableSetting dyna_state{linkage, -#if defined (ANDROID) - ExtendedDynamicState::Disabled, -#elif defined (__APPLE__) +#if defined (ANDROID) || defined (__APPLE__) ExtendedDynamicState::Disabled, #else ExtendedDynamicState::EDS2,