When dumping DVD or Blu-ray, the last sector of all the tracks should be considered the last block, even if the drive tells us differently. Fixes #414

This commit is contained in:
2020-11-07 01:38:54 +00:00
parent 404dc90e8e
commit 5068a68001

View File

@@ -460,6 +460,9 @@ namespace Aaru.Core.Devices.Dumping
TrackSubchannelType = TrackSubchannelType.None
};
if(track.TrackEndSector >= blocks)
blocks = track.TrackEndSector + 1;
tracks.Add(track);
}