- Fixed selection form scan progress starting at 100% on first run
This commit is contained in:
pointfeev 2022-03-18 19:18:19 -04:00
parent 464c82e2f8
commit 8ae84415fe
2 changed files with 2 additions and 1 deletions

View file

@ -5,7 +5,7 @@
<UseWindowsForms>True</UseWindowsForms> <UseWindowsForms>True</UseWindowsForms>
<ApplicationIcon>Resources\ini.ico</ApplicationIcon> <ApplicationIcon>Resources\ini.ico</ApplicationIcon>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract> <IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<Version>3.4.0.1</Version> <Version>3.4.0.2</Version>
<PackageIcon>Resources\ini.ico</PackageIcon> <PackageIcon>Resources\ini.ico</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile> <PackageLicenseFile>LICENSE</PackageLicenseFile>
<Copyright>2021, pointfeev (https://github.com/pointfeev)</Copyright> <Copyright>2021, pointfeev (https://github.com/pointfeev)</Copyright>

View file

@ -88,6 +88,7 @@ internal partial class SelectForm : CustomForm
{ {
this.AddToRemainingGames(gameName); this.AddToRemainingGames(gameName);
progress.Report(-++TotalGameCount); progress.Report(-++TotalGameCount);
progress.Report(CompleteGameCount);
} }
void RemoveFromRemainingGames(string gameName) void RemoveFromRemainingGames(string gameName)
{ {