From 216d4ac983fe57396d585ce6fd97f21bd978f68f Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 2 Feb 2013 17:54:30 -0500 Subject: [PATCH] HACK fix client path joining --- Sources/Plasma/Apps/plClientPatcher/UruPlayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/Apps/plClientPatcher/UruPlayer.cpp b/Sources/Plasma/Apps/plClientPatcher/UruPlayer.cpp index ec2ebf70..a5957d6b 100644 --- a/Sources/Plasma/Apps/plClientPatcher/UruPlayer.cpp +++ b/Sources/Plasma/Apps/plClientPatcher/UruPlayer.cpp @@ -966,7 +966,7 @@ void UruStartProc (void * param) { //fprintf(stderr, "URUPlayer StartProc gamePath is:%ws\n", workDir); wchar_t cmdLine[MAX_PATH]; - StrPrintf(cmdLine, arrsize(cmdLine), L"%s%s %s", workDir, s_clientExeName, info->cmdLine); + StrPrintf(cmdLine, arrsize(cmdLine), L"%s\\%s %s", workDir, s_clientExeName, info->cmdLine); // Create the named event so the client won't restart us (Windows will clean it up when we exit) HANDLE hPatcherEvent = CreateEventW(nil, TRUE, FALSE, L"UruPatcherEvent");