Tools/ConnectionPatcher: fix typo

This commit is contained in:
MitchesD
2015-08-21 12:48:25 +02:00
parent 172293acee
commit 50bf874a77

View File

@@ -201,7 +201,7 @@ int main(int argc, char** argv)
if ((tempPath = getenv("HOME")) == nullptr)
tempPath = getpwuid(getuid())->pw_dir;
std::string tempPathStr(tempPath);
appDataPath.assign(tempPathStr.begin(), tempPathStr.end()) + std::wstring(L"/.wine/.drive_c/users/Public/Application Data");
appDataPath.assign(tempPathStr.begin(), tempPathStr.end()) + std::wstring(L"/.wine/drive_c/users/Public/Application Data");
#endif
if (vm.count("modulePath"))
appDataPath.assign(vm["modulePath"].as<std::string>().begin(), vm["modulePath"].as<std::string>().end());