Detect Iomega REV 35Gb when dumping.

This commit is contained in:
2019-07-13 20:46:25 +01:00
parent 16bf886ad4
commit 7ee83e12dd
3 changed files with 33 additions and 2 deletions

View File

@@ -178,7 +178,16 @@ namespace DiscImageChef.Core.Devices.Dumping
dumpLog.WriteLine("Device reports disc has {0} blocks", blocks);
Dictionary<MediaTagType, byte[]> mediaTags = new Dictionary<MediaTagType, byte[]>();
if(dskType == MediaType.PD650 && blocks == 1281856) dskType = MediaType.PD650_WORM;
if(dskType == MediaType.PD650)
switch(blocks + 1)
{
case 1281856:
dskType = MediaType.PD650_WORM;
break;
case 17090880:
dskType = MediaType.REV35;
break;
}
#region Nintendo
switch(dskType)