As of today none of my testing drives will read Nintendo's BCA

because the PFI says there is no BCA.
This commit is contained in:
2015-12-03 08:13:40 +00:00
parent 98e2d18347
commit 3d337f03ae
2 changed files with 7 additions and 5 deletions

View File

@@ -1,3 +1,10 @@
2015-12-03 Natalia Portillo <claunia@claunia.com>
* Commands/MediaInfo.cs:
As of today none of my testing drives will read Nintendo's
BCA because the PFI says there is no BCA.
2015-12-03 Natalia Portillo <claunia@claunia.com>
* Commands/MediaInfo.cs:

View File

@@ -836,11 +836,6 @@ namespace DiscImageChef.Commands
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: DMI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
else
doWriteFile(outputPrefix, "_readdiscstructure_dvd_dmi.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.BurstCuttingArea, 0, dev.Timeout, out duration);
if(sense)
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: BCA\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
else
doWriteFile(outputPrefix, "_readdiscstructure_dvd_bca.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
}
#endregion Nintendo
}