Corrected type and name of minix subpartitions.

This commit is contained in:
2017-07-25 03:27:58 +01:00
parent b94613b523
commit fed6ecad33

View File

@@ -378,8 +378,8 @@ namespace DiscImageChef.PartPlugins
if(mnx_valid) if(mnx_valid)
{ {
any_mnx = true; any_mnx = true;
part.Type = string.Format("0x{0:X2}", mnx_entry.type); part.Type = "MINIX";
part.Name = DecodeMBRType(mnx_entry.type); part.Name = "MINIX";
part.Description = mnx_entry.status == 0x80 ? "Partition is bootable." : ""; part.Description = mnx_entry.status == 0x80 ? "Partition is bootable." : "";
part.Scheme = "MINIX"; part.Scheme = "MINIX";