diff --git a/Windows/main.cpp b/Windows/main.cpp index 0b6a5d086..e19eb4131 100644 --- a/Windows/main.cpp +++ b/Windows/main.cpp @@ -416,7 +416,7 @@ int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLin if (wideArgs[i].find(controlsOption) != std::wstring::npos && wideArgs[i].size() > controlsOption.size()) { const std::wstring tempWide = wideArgs[i].substr(configOption.size()); const std::string tempStr = ConvertWStringToUTF8(tempWide); - std::strncpy(configFilename, tempStr.c_str(), MAX_PATH); + std::strncpy(controlsConfigFilename, tempStr.c_str(), MAX_PATH); } } }