🐛Fix off-by-one in compactdisc dumping log.

This commit is contained in:
2018-02-02 17:03:35 +00:00
parent 60275bf473
commit 2a26a22e21

View File

@@ -666,7 +666,7 @@ namespace DiscImageChef.Core.Devices.Dumping
start = DateTime.UtcNow;
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)
{