mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Fix external client build (again)
These arguments for launching the patcher were broken by some plString changes. They don't work with the new patcher anyway, so let's just nuke that crufty crap!
This commit is contained in:
@ -1190,25 +1190,9 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nC
|
||||
memset(&pi, 0, sizeof(pi));
|
||||
si.cb = sizeof(si);
|
||||
|
||||
const char** addrs;
|
||||
|
||||
if (!eventExists) // if it is missing, assume patcher wasn't launched
|
||||
{
|
||||
plStringStream cmdLine;
|
||||
|
||||
GetAuthSrvHostnames(&addrs);
|
||||
if (strlen(addrs[0]))
|
||||
cmdLine << " /AuthSrv=" << addrs[0];
|
||||
|
||||
GetFileSrvHostnames(&addrs);
|
||||
if (strlen(addrs[0]))
|
||||
cmdLine << " /FileSrv=" << addrs[0];
|
||||
|
||||
GetGateKeeperSrvHostnames(&addrs);
|
||||
if (strlen(addrs[0]))
|
||||
cmdLine << " /GateKeeperSrv=" << addrs[0];
|
||||
|
||||
if(!CreateProcessW(s_patcherExeName, (LPWSTR)cmdLine.GetString().ToUtf16().GetData(), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
|
||||
if(!CreateProcessW(s_patcherExeName, NULL, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
|
||||
{
|
||||
hsMessageBox("Failed to launch patcher", "Error", hsMessageBoxNormal);
|
||||
}
|
||||
|
Reference in New Issue
Block a user