From da35986d9390c89d85acae50258b53348297cc79 Mon Sep 17 00:00:00 2001 From: luboslenco Date: Thu, 21 Aug 2025 17:28:59 +0200 Subject: [PATCH] Android fixes --- base/sources/ts/config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/base/sources/ts/config.ts b/base/sources/ts/config.ts index a462f9d7..70ff864c 100644 --- a/base/sources/ts/config.ts +++ b/base/sources/ts/config.ts @@ -147,6 +147,12 @@ function config_init() { config_raw.rp_ssao = true; ///end config_raw.rp_supersample = 1.0; + ///if arm_android + if (sys_display_width() >= 3200 && sys_display_height() >= 2136) { + config_raw.window_scale = 3.0; + config_raw.rp_supersample = 0.5; + } + ///end config_raw.version = manifest_version; config_raw.sha = config_get_sha(); base_init_config();