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

@@ -557,7 +557,6 @@ namespace DiscImageChef.Filesystems.FAT
}
case BpbKind.Human:
isFat16 = true;
XmlFsType.Bootable = true;
break;
}
@@ -603,6 +602,9 @@ namespace DiscImageChef.Filesystems.FAT
case BpbKind.Apricot:
sb.AppendLine("Apricot FAT12");
break;
case BpbKind.Human:
sb.AppendLine("Human68k FAT12");
break;
default:
sb.AppendLine("Microsoft FAT12");
break;