From 1ee4d23d07345dacb0af075cbec67d39d6276dfa Mon Sep 17 00:00:00 2001 From: kub Date: Thu, 2 Jan 2025 23:39:04 +0100 Subject: [PATCH] sms, fix sprite table address in TMS modes --- pico/mode4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico/mode4.c b/pico/mode4.c index 38002536..05c290e1 100644 --- a/pico/mode4.c +++ b/pico/mode4.c @@ -439,7 +439,7 @@ static void ParseSpritesTMS(int scanline) xoff = line_offset; - sat = (u8 *)PicoMem.vramb + ((pv->reg[5] & 0x7e) << 7); + sat = (u8 *)PicoMem.vramb + ((pv->reg[5] & 0x7f) << 7); if (pv->reg[1] & 2) { addr_mask = 0xfc; h = 16; } else { -- 2.39.5