From 90d1ddac52d1e4e94cbf79f9c12339bb184d06c7 Mon Sep 17 00:00:00 2001 From: TC1995 Date: Wed, 17 Jun 2020 00:51:06 +0200 Subject: [PATCH] Hopefully fixed the UI for the Internal/External FDC hookup. --- src/win/win_settings.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/win/win_settings.c b/src/win/win_settings.c index fdc148859..f33f32c07 100644 --- a/src/win/win_settings.c +++ b/src/win/win_settings.c @@ -1601,12 +1601,6 @@ recalc_fdc_list(HWND hdlg) SendMessage(h, CB_SETCURSEL, 0, 0); while (1) { - /* Skip "internal" if machine doesn't have it. */ - if ((c == 1) && !(machines[temp_machine].flags & MACHINE_FDC)) { - c++; - continue; - } - char *s = fdc_ext_get_name(c); if (!s[0])