libretro, fix cart sram handling for MSU/MD+ cartridges
authorkub <derkub@gmail.com>
Tue, 4 Feb 2025 20:52:57 +0000 (21:52 +0100)
committerkub <derkub@gmail.com>
Tue, 4 Feb 2025 20:52:57 +0000 (21:52 +0100)
pico/media.c
platform/libretro/libretro.c

index ff7a338..e0c25b2 100644 (file)
@@ -412,12 +412,6 @@ enum media_type_e PicoLoadMedia(const char *filename,
       lprintf("detected SMS ROM\n");
   }
 
-  if (PicoCartInsert(rom_data, rom_size, carthw_cfg_fname)) {
-    media_type = PM_ERROR;
-    goto out;
-  }
-  rom_data = NULL; // now belongs to PicoCart
-
   // insert CD if it was detected
   Pico.m.ncart_in = 0;
   if (cd_img_type != CT_UNKNOWN) {
@@ -431,6 +425,12 @@ enum media_type_e PicoLoadMedia(const char *filename,
       Pico.m.ncart_in = 1;
   }
 
+  if (PicoCartInsert(rom_data, rom_size, carthw_cfg_fname)) {
+    media_type = PM_ERROR;
+    goto out;
+  }
+  rom_data = NULL; // now belongs to PicoCart
+
   if (PicoIn.quirks & PQUIRK_FORCE_6BTN)
     PicoSetInputDevice(0, PICO_INPUT_PAD_6BTN);
 
index 1fafa0b..82fae8a 100644 (file)
@@ -1714,9 +1714,9 @@ size_t retro_get_memory_size(unsigned type)
    switch(type)
    {
       case RETRO_MEMORY_SAVE_RAM:
-         if (PicoIn.AHW & PAHW_MCD)
+         if ((PicoIn.AHW & PAHW_MCD) && Pico.romsize == 0)
          {
-            if (Pico.romsize == 0 && PicoIn.opt & POPT_EN_MCD_RAMCART)
+            if (PicoIn.opt & POPT_EN_MCD_RAMCART)
                return 0x12000;
             else /* bram */
                return 0x2000;