Commented out support for hiding internal fdc

This commit is contained in:
Jasmine Iwanek
2024-07-01 00:25:52 -04:00
parent f68f048726
commit 8aba1361e6

View File

@@ -110,6 +110,14 @@ SettingsStorageControllers::onCurrentMachineChanged(int machineId)
c = 0;
selectedRow = 0;
while (true) {
#if 0
/* Skip "internal" if machine doesn't have it. */
if ((c == 1) && (machine_has_flags(machineId, MACHINE_FDC) == 0)) {
c++;
continue;
}
#endif
QString name = DeviceConfig::DeviceName(fdc_card_getdevice(c), fdc_card_get_internal_name(c), 1);
if (name.isEmpty()) {
break;