From: kub Date: Sun, 23 Mar 2025 08:23:44 +0000 (+0100) Subject: md, fix lk3 mapper state loading X-Git-Tag: v2.04~15 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81e3d012312097772d0a54544f6b253b0d74a61d;p=picodrive.git md, fix lk3 mapper state loading --- 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)