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) {
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);
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;