Fix copy paste error with that breaks controlconfig passing via cmdline

This was discovered by fgeds here: http://forums.ppsspp.org/showthread.php?tid=13655
so all props go to him.
This commit is contained in:
Peter Tissen 2014-11-02 14:19:20 +01:00
parent d1dbd47172
commit a8b595c4d3

View File

@ -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);
}
}
}