From 59be547a8223918e556f28d281688eb9f3ed4820 Mon Sep 17 00:00:00 2001 From: Perfare Date: Thu, 18 Apr 2019 14:07:17 +0800 Subject: [PATCH] fixed bug --- AssetStudioGUI/Studio.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AssetStudioGUI/Studio.cs b/AssetStudioGUI/Studio.cs index 42512e4..6b80874 100644 --- a/AssetStudioGUI/Studio.cs +++ b/AssetStudioGUI/Studio.cs @@ -35,7 +35,7 @@ namespace AssetStudioGUI extractedCount += ExtractWebDataFile(fileName, reader); else reader.Dispose(); - Progress.Report(++i, fileNames.Length); + Progress.Report(i + 1, fileNames.Length); } Logger.Info($"Finished extracting {extractedCount} files.");