mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🐛Fix off-by-one in compactdisc dumping log.
This commit is contained in:
@@ -666,7 +666,7 @@ namespace DiscImageChef.Core.Devices.Dumping
|
|||||||
start = DateTime.UtcNow;
|
start = DateTime.UtcNow;
|
||||||
for(int t = 0; t < tracks.Length; t++)
|
for(int t = 0; t < tracks.Length; t++)
|
||||||
{
|
{
|
||||||
dumpLog.WriteLine("Reading track {0}", t);
|
dumpLog.WriteLine("Reading track {0}", t + 1);
|
||||||
|
|
||||||
for(ulong i = resume.NextBlock; i <= tracks[t].TrackEndSector; i += blocksToRead)
|
for(ulong i = resume.NextBlock; i <= tracks[t].TrackEndSector; i += blocksToRead)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user