Skip to content

Commit

Permalink
Start file counter from 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazyhamster committed May 9, 2022
1 parent 4a75ab1 commit 76dc497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/IntChecker2-Far3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ static void RunVerifySignatures(Far3Panel &panel)
FarScreenSave screen;

strShortName = ShortenPath(nextItem.PanelPath, 50);
strFileNum = FormatString(L"File %ul / %ul", i, filesToVerify.size());
strFileNum = FormatString(L"File %ul / %ul", i + 1, filesToVerify.size());

static const wchar_t* InfoLines[3];
InfoLines[0] = GetLocMsg(MSG_DLG_PROCESSING);
Expand Down

0 comments on commit 76dc497

Please sign in to comment.