From ca0ecfa6a16460a2ab63dcd5bfb752f60df7c715 Mon Sep 17 00:00:00 2001 From: honkstar1 Date: Wed, 4 Aug 2021 16:22:51 -0700 Subject: [PATCH] Fixed bug with /IX skipping first three char of argument --- source/EACopy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/EACopy.cpp b/source/EACopy.cpp index 685bdb3..e1fdeb3 100644 --- a/source/EACopy.cpp +++ b/source/EACopy.cpp @@ -383,7 +383,7 @@ bool readSettings(Settings& outSettings, int argc, wchar_t* argv[]) logErrorf(L"Can't combine file(s) with /IX"); return false; } - outSettings.filesExcludeFiles.push_back(arg + 3); + outSettings.filesExcludeFiles.push_back(arg); } else {