core, preparations for sc-3000 support

This commit is contained in:
kub 2023-02-18 20:57:16 +00:00
parent ecf8764253
commit cab84f29e5
10 changed files with 66 additions and 18 deletions

View file

@ -368,6 +368,9 @@ enum media_type_e PicoLoadMedia(const char *filename,
} else if (ext && !strcmp(ext,"sg")) {
Pico.m.hardware |= PMS_HW_SG;
lprintf("detected SG-1000 ROM\n");
} else if (ext && !strcmp(ext,"sc")) {
Pico.m.hardware |= PMS_HW_SC;
lprintf("detected SC-3000 ROM\n");
} else
lprintf("detected SMS ROM\n");
}