mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix Human68k FAT12 detection.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user