Enable resuming tapes.

This commit is contained in:
2019-05-01 23:21:16 +01:00
parent 8f00b6aff2
commit 33f0e86597
3 changed files with 28 additions and 25 deletions

View File

@@ -369,7 +369,8 @@ namespace DiscImageChef.Gui.Forms
return;
}
if(resume == null || resume.NextBlock <= resume.LastBlock || resume.BadBlocks.Count != 0) return;
if(resume == null || resume.NextBlock <= resume.LastBlock ||
resume.BadBlocks.Count != 0 && !resume.Tape) return;
MessageBox.Show("Media already dumped correctly, please choose another destination...",
MessageBoxType.Warning);