init sd card when emusd inactive

This commit is contained in:
Christoph Baumann
2025-05-21 16:52:33 +02:00
parent cfc2febc1b
commit a3f5e33625

View File

@@ -154,6 +154,10 @@ out:
int emusd_storage_init_mmc() {
if(!emusd_initialized) {
if (!emu_sd_cfg.enabled || h_cfg.emummc_force_disable) {
if(!sd_initialize(false)){
return 1;
}
emusd_initialized = true;
return 0;
}