From 4221a09edfef65b36c820e401c6f16a9d901b39b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 17 Jul 2023 13:31:57 +0200 Subject: [PATCH] Increase the max size of rendered text, for Android devices with insane resolutions. --- android/src/org/ppsspp/ppsspp/TextRenderer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/src/org/ppsspp/ppsspp/TextRenderer.java b/android/src/org/ppsspp/ppsspp/TextRenderer.java index 6e753c8739..d33016442c 100644 --- a/android/src/org/ppsspp/ppsspp/TextRenderer.java +++ b/android/src/org/ppsspp/ppsspp/TextRenderer.java @@ -61,10 +61,10 @@ public class TextRenderer { total.x = 1; if (total.y < 1) total.y = 1; - if (total.x > 2048) - total.x = 2048; - if (total.y > 2048) - total.y = 2048; + if (total.x > 4096) + total.x = 4096; + if (total.y > 4096) + total.y = 4096; return total; }