mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix getting tracks when writing raw image. Fixes #568
This commit is contained in:
@@ -67,7 +67,7 @@ namespace Aaru.DiscImages
|
||||
? 2336
|
||||
: 2048 : (int)_imageInfo.SectorSize,
|
||||
TrackEndSector = _imageInfo.Sectors - 1,
|
||||
TrackFile = _rawImageFilter.GetFilename(),
|
||||
TrackFile = _rawImageFilter?.GetFilename() ?? _basePath,
|
||||
TrackFileOffset = 0,
|
||||
TrackFileType = "BINARY",
|
||||
TrackRawBytesPerSector = _rawCompactDisc ? 2352 : (int)_imageInfo.SectorSize,
|
||||
|
||||
Reference in New Issue
Block a user