From 805a5dde16a90a2b93f59e86db8cdf9f4cada218 Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 18 Mar 2013 00:47:21 +0000 Subject: [PATCH] my stuff's always buggy. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4268 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/sys_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/sys_win.c b/engine/client/sys_win.c index 2219fc358..cf55e9251 100644 --- a/engine/client/sys_win.c +++ b/engine/client/sys_win.c @@ -2276,7 +2276,7 @@ qboolean Sys_CheckUpdated(void) if (*updatedpath) { GetModuleFileName(NULL, frontendpath, sizeof(frontendpath)-1); - if (CreateProcess(updatedpath, va("\"%s\" %s --fromfrontend \"%s\" \"%s\" %s", frontendpath, COM_ParseOut(GetCommandLineA()), SVNREVISIONSTR, frontendpath), NULL, NULL, TRUE, 0, NULL, NULL, &startinfo, &childinfo)) + if (CreateProcess(updatedpath, va("\"%s\" %s --fromfrontend \"%s\" \"%s\" %s", frontendpath, COM_Parse(GetCommandLineA()), SVNREVISIONSTR, frontendpath), NULL, NULL, TRUE, 0, NULL, NULL, &startinfo, &childinfo)) return true; } }