From f6a4c547412d1268d05aee96423a9629e8ae1b06 Mon Sep 17 00:00:00 2001 From: SarahW Date: Sun, 1 May 2016 12:27:26 +0100 Subject: [PATCH] Floppy drive type defaults to sensible value. --- src/pc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pc.c b/src/pc.c index 654979a..bb50a5f 100644 --- a/src/pc.c +++ b/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()