Floppy drive type defaults to sensible value.

This commit is contained in:
SarahW 2016-05-01 12:27:26 +01:00
commit f6a4c54741

View file

@ -645,8 +645,8 @@ void loadconfig(char *fn)
if (p) strcpy(ide_fn[3], p);
else strcpy(ide_fn[3], "");
fdd_set_type(0, config_get_int(NULL, "drive_a_type", 0));
fdd_set_type(1, config_get_int(NULL, "drive_b_type", 0));
fdd_set_type(0, config_get_int(NULL, "drive_a_type", 7));
fdd_set_type(1, config_get_int(NULL, "drive_b_type", 7));
}
void saveconfig()