Fix FDC's on MCA IBM PS/2 machines fixes #4962.

This commit is contained in:
OBattler
2024-12-03 02:07:02 +01:00
parent 2e8bdaf587
commit 75fda2f046
7 changed files with 104 additions and 78 deletions

View File

@@ -294,7 +294,7 @@ fdd_type_invert_densel(int type)
int ret;
if (drive_types[type].flags & FLAG_PS2)
ret = !strstr(machine_getname(), "PS/2");
ret = !!strstr(machine_getname(), "PS/");
else
ret = drive_types[type].flags & FLAG_INVERT_DENSEL;