Change device report entry for Lead-in to first track pre-gap and add a new entry for proper Lead-in

This commit is contained in:
2018-11-25 17:50:46 +00:00
parent 667acd9faa
commit 3a8d016a72
2 changed files with 2 additions and 1 deletions

View File

@@ -300,6 +300,7 @@ namespace DiscImageChef.CommonTypes.Metadata
public bool? CanReadFullTOC { get; set; } public bool? CanReadFullTOC { get; set; }
public bool? CanReadHDCMI { get; set; } public bool? CanReadHDCMI { get; set; }
public bool? CanReadLayerCapacity { get; set; } public bool? CanReadLayerCapacity { get; set; }
public bool? CanReadFirstTrackPreGap { get; set; }
public bool? CanReadLeadIn { get; set; } public bool? CanReadLeadIn { get; set; }
public bool? CanReadLeadOut { get; set; } public bool? CanReadLeadOut { get; set; }
public bool? CanReadMediaID { get; set; } public bool? CanReadMediaID { get; set; }

View File

@@ -1154,7 +1154,7 @@ namespace DiscImageChef.Core.Devices.Report.SCSI
"read results", buffer); "read results", buffer);
if(sense) continue; if(sense) continue;
mediaTest.CanReadLeadIn = true; mediaTest.CanReadFirstTrackPreGap = true;
break; break;
} }