Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
tomrus88 committed Dec 14, 2015
1 parent c8a13ed commit 52f1fea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions CascLib/DownloadHandler.cs
Expand Up @@ -56,8 +56,7 @@ public DownloadHandler(BinaryReader stream, BackgroundWorkerEx worker)

DownloadData.Add(key, entry);

if (i % 10 == 0)
worker?.ReportProgress((int)((i + 1) / (float)numFiles * 100));
worker?.ReportProgress((int)((i + 1) / (float)numFiles * 100));
}

for (int i = 0; i < numTags; i++)
Expand Down

0 comments on commit 52f1fea

Please sign in to comment.