core, fix sram access in ssf2 mapper
authorkub <derkub@gmail.com>
Tue, 21 Sep 2021 20:23:01 +0000 (22:23 +0200)
committerkub <derkub@gmail.com>
Tue, 21 Sep 2021 20:23:01 +0000 (22:23 +0200)
credits go to madmonkey1907 for finding this

pico/carthw/carthw.c

index 0cadacd..c6d8993 100644 (file)
@@ -35,7 +35,7 @@ void carthw_ssf2_write8(u32 a, u32 d)
 {
   u32 target, base;
 
-  if ((a & ~0x0e) != 0xa130f1) {
+  if ((a & ~0x0e) != 0xa130f1 || a == 0xa130f1) {
     PicoWrite8_io(a, d);
     return;
   }