mirror of
https://github.com/Oibaf66/fbzx-wii.git
synced 2024-11-24 17:16:57 +01:00
Emulator does not exit if the cartridge is not 16KB long
This commit is contained in:
parent
8a63b21260
commit
4c2ab2e636
@ -398,9 +398,12 @@ void load_rom(char type) {
|
|||||||
|
|
||||||
switch(type) {
|
switch(type) {
|
||||||
case 0:
|
case 0:
|
||||||
|
if (rom_cartridge[0])
|
||||||
|
{if (load_rom_cartridge()) {msgInfo("Cartridge must be 16KB long", 3000, NULL);} else break;}
|
||||||
|
|
||||||
if (ordenador.se_basic) filenames[0]="spectrum-roms/opense.rom"; else filenames[0]="spectrum-roms/48.rom";
|
if (ordenador.se_basic) filenames[0]="spectrum-roms/opense.rom"; else filenames[0]="spectrum-roms/48.rom";
|
||||||
filenames[1]=NULL;
|
filenames[1]=NULL;
|
||||||
if (rom_cartridge[0]) retval = load_rom_cartridge(); else retval=load_a_rom(filenames);
|
retval=load_a_rom(filenames);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
printf("Can't load file %s\n",retval);
|
printf("Can't load file %s\n",retval);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user