mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Detect Iomega REV 35Gb when dumping.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user