From 76dc497d172fdf36dbab12d87f4b6a669dfccb21 Mon Sep 17 00:00:00 2001 From: Vitaliy Didik Date: Mon, 9 May 2022 12:36:50 +0300 Subject: [PATCH] Start file counter from 1. --- source/IntChecker2-Far3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/IntChecker2-Far3.cpp b/source/IntChecker2-Far3.cpp index 301d285..713e133 100644 --- a/source/IntChecker2-Far3.cpp +++ b/source/IntChecker2-Far3.cpp @@ -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);