From 24ba3447626261f6b467e27c89c4646327738ac4 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 12 Mar 2013 23:01:55 +0000 Subject: [PATCH] ------------------------------------------------------------------------ r4216 | acceptthis | 2013-02-18 06:13:49 +0000 (Mon, 18 Feb 2013) | 1 line don't show path picker when we've a manifest file. It doesn't quite seem right. ------------------------------------------------------------------------ git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4213 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/fs.c b/engine/common/fs.c index 265e61919..340625558 100644 --- a/engine/common/fs.c +++ b/engine/common/fs.c @@ -2382,7 +2382,7 @@ qboolean Sys_FindGameData(const char *poshname, const char *gamename, char *base } #if !defined(NPFTE) && !defined(SERVERONLY) //this is *really* unfortunate, but doing this crashes the browser - if (poshname) + if (poshname && !COM_CheckParm("-manifest")) { char resultpath[MAX_PATH]; BROWSEINFO bi;