In dicformat deconstruct MODE 2 sectors so if they have correct ECC, correct/empty EDC, those fields are not stored in the image.

This commit is contained in:
2018-08-02 23:25:20 +01:00
parent 076297bbbd
commit 04c1b358aa
3 changed files with 84 additions and 24 deletions

View File

@@ -252,8 +252,11 @@ namespace DiscImageChef.DiscImages
enum CdFixFlags : uint
{
NotDumped = 0x10000000,
Correct = 0x20000000
NotDumped = 0x10000000,
Correct = 0x20000000,
Mode2Form1Ok = 0x30000000,
Mode2Form2Ok = 0x40000000,
Mode2Form2NoCrc = 0x50000000
}
}
}