DD floppy drives now correctly ignore DENSEL when reading DD floppies;
Ne2000 now uses the correct vendor ID for the MAC address, per information from waltje; File name text box in Add hard disk dialog is now correctly disabled; Floppy drive types are now stored as readable string in the configuration file.
This commit is contained in:
@@ -724,6 +724,10 @@ int d86f_wrong_densel(int drive)
|
||||
{
|
||||
case 0:
|
||||
default:
|
||||
if (fdd_is_dd(drive))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
if (fdd_get_densel(drive))
|
||||
{
|
||||
return 1;
|
||||
@@ -734,6 +738,10 @@ int d86f_wrong_densel(int drive)
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
if (fdd_is_dd(drive))
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
if (fdd_get_densel(drive))
|
||||
{
|
||||
return 0;
|
||||
@@ -751,6 +759,10 @@ int d86f_wrong_densel(int drive)
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
if (fdd_is_dd(drive) || !fdd_is_ed(drive))
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
if (fdd_get_densel(drive))
|
||||
{
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user