From a894585769dcb64e309f143c8ef605766b34eabd Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Mon, 6 Apr 2026 18:56:52 -0400 Subject: [PATCH] [android] Adjusted EDS default level for Android --- src/common/settings.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common/settings.h b/src/common/settings.h index c016f6d143..2082932d78 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -579,7 +579,9 @@ struct Values { Category::RendererHacks}; SwitchableSetting dyna_state{linkage, -#if defined (ANDROID) || defined (__APPLE__) +#if defined(ANDROID) + ExtendedDynamicState::EDS1, +#elif defined(__APPLE__) ExtendedDynamicState::Disabled, #else ExtendedDynamicState::EDS2,