From 4182483ea2a71d41243e9142aab3838f102c1b33 Mon Sep 17 00:00:00 2001 From: kub Date: Wed, 28 Sep 2022 18:53:27 +0000 Subject: [PATCH] sms, fix center tms text mode (mode 1) --- pico/mode4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico/mode4.c b/pico/mode4.c index d28b1f57..0b49395a 100644 --- a/pico/mode4.c +++ b/pico/mode4.c @@ -561,7 +561,7 @@ static void DrawDisplayM1(int scanline) tilex = cellskip & 0x1f; cells = maxcells - cellskip; - dx = (cellskip << 3) + line_offset; + dx = 8 + (cellskip << 3) + line_offset; // tiles if (!(pv->debug_p & PVD_KILL_B)) -- 2.39.2