Add $EMUMMC$ flag, add DEL and DEL-R commands to scripting

This commit is contained in:
Such Meme, Many Skill
2020-02-07 12:19:46 +01:00
parent 37ce49a31f
commit eecefd634c
4 changed files with 35 additions and 26 deletions

View File

@@ -89,9 +89,10 @@ void connect_mmc(short mmctype){
currentlyMounted = SYSMMC;
break;
case EMUMMC:
emummc_storage_init_mmc(&storage, &sdmmc);
emu_cfg.enabled = 1;
currentlyMounted = EMUMMC;
if (emummc_storage_init_mmc(&storage, &sdmmc)){
emu_cfg.enabled = 1;
currentlyMounted = EMUMMC;
}
break;
}
}