From 368a8f9e3dea960366e7eaadeb21218dd1643bcf Mon Sep 17 00:00:00 2001 From: lizzie Date: Wed, 21 Jan 2026 03:55:34 +0100 Subject: [PATCH] [android] fix resolution info.active causing 1/4th of screen rendering when using 0.5x instead of downscaled 0.5x (#3361) Signed-off-by: lizzie Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3361 Reviewed-by: MaranBr Co-authored-by: lizzie Co-committed-by: lizzie --- src/common/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 333f340734..746638dcf8 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -348,7 +348,7 @@ void TranslateResolutionInfo(ResolutionSetup setup, ResolutionScalingInfo& info) info.up_factor = static_cast(info.up_scale) / (1U << info.down_shift); info.down_factor = static_cast(1U << info.down_shift) / info.up_scale; #ifdef __ANDROID__ - info.active = false; + info.active = info.up_scale != 1 || info.down_shift != 0; #else info.active = true; #endif