mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix calculating track end in Alcohol 120% images, fixes #176.
This commit is contained in:
@@ -124,7 +124,7 @@ namespace DiscImageChef.DiscImages
|
||||
{
|
||||
Indexes = new Dictionary<int, ulong> {{1, alcTrack.startLba}},
|
||||
TrackStartSector = alcTrack.startLba,
|
||||
TrackEndSector = alcExtra.sectors - 1,
|
||||
TrackEndSector = (alcTrack.startLba + alcExtra.sectors) - 1,
|
||||
TrackPregap = alcExtra.pregap,
|
||||
TrackSession = sessionNo,
|
||||
TrackSequence = alcTrack.point,
|
||||
|
||||
Reference in New Issue
Block a user