From f23afac74521d6d08d7858d25353264beee426f0 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Fri, 4 Jul 2025 23:19:18 +1000 Subject: [PATCH] PS2: Fix onscreen keyboard not appearing --- src/ps2/Graphics_PS2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ps2/Graphics_PS2.c b/src/ps2/Graphics_PS2.c index f5a18d0c7..226da92e6 100644 --- a/src/ps2/Graphics_PS2.c +++ b/src/ps2/Graphics_PS2.c @@ -152,6 +152,7 @@ void Gfx_Create(void) { Gfx.MaxTexWidth = 1024; Gfx.MaxTexHeight = 1024; Gfx.MaxTexSize = 256 * 256; + Gfx.MaxLowResTexSize = 512 * 512; // TODO better fix, needed for onscreen keyboard Gfx.Created = true; Gfx_RestoreState();