Floppy drive type defaults to sensible value.
This commit is contained in:
parent
d83249648f
commit
f6a4c54741
1 changed files with 2 additions and 2 deletions
4
src/pc.c
4
src/pc.c
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue