🐛Only retry as many times as requested.

This commit is contained in:
2018-04-10 02:47:08 +01:00
parent 07f0dfe935
commit 27f5204e35
5 changed files with 10 additions and 12 deletions

View File

@@ -697,7 +697,7 @@ namespace DiscImageChef.Core.Devices.Dumping
tmpList.Sort();
int pass = 0;
int pass = 1;
bool forward = true;
bool runningPersistent = false;
@@ -714,7 +714,7 @@ namespace DiscImageChef.Core.Devices.Dumping
break;
}
DicConsole.Write("\rRetrying sector {0}, pass {1}, {3}{2}", badSector, pass + 1,
DicConsole.Write("\rRetrying sector {0}, pass {1}, {3}{2}", badSector, pass,
forward ? "forward" : "reverse",
runningPersistent ? "recovering partial data, " : "");