From 81e3d012312097772d0a54544f6b253b0d74a61d Mon Sep 17 00:00:00 2001 From: kub Date: Sun, 23 Mar 2025 09:23:44 +0100 Subject: [PATCH] md, fix lk3 mapper state loading --- pico/carthw/carthw.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pico/carthw/carthw.c b/pico/carthw/carthw.c index c9cf30c1..2bab1549 100644 --- a/pico/carthw/carthw.c +++ b/pico/carthw/carthw.c @@ -1010,7 +1010,9 @@ static void carthw_lk3_mem_setup(void) static void carthw_lk3_statef(void) { - PicoWrite8_plk3b(0x700000, carthw_lk3_regs.bank >> 15); + int bank = carthw_lk3_regs.bank >> 15; + carthw_lk3_regs.bank = -1; + PicoWrite8_plk3b(0x700000, bank); } static void carthw_lk3_unload(void) -- 2.39.5