Fix Human68k FAT12 detection.

This commit is contained in:
2019-04-28 15:44:34 +01:00
parent c37b3953cd
commit 0de7296edd
2 changed files with 4 additions and 3 deletions

View File

@@ -228,7 +228,6 @@ namespace DiscImageChef.Filesystems.FAT
}
case BpbKind.Human:
fat16 = true;
XmlFsType.Bootable = true;
break;
}
@@ -579,7 +578,7 @@ namespace DiscImageChef.Filesystems.FAT
statfs.Type = $"DEC FAT{(fat16 ? "16" : "12")}";
break;
case BpbKind.Human:
statfs.Type = $"Human FAT{(fat16 ? "16" : "12")}";
statfs.Type = $"Human68k FAT{(fat16 ? "16" : "12")}";
break;
default: throw new ArgumentOutOfRangeException();
}