From 5fabdcd186669a8d379c55ebe1d51306f2e382fe Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 18 Jun 2019 15:09:31 +0000 Subject: [PATCH] Fix missing symbol in certain build types. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5479 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_parse.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/client/cl_parse.c b/engine/client/cl_parse.c index 45e2da887..0d4100125 100644 --- a/engine/client/cl_parse.c +++ b/engine/client/cl_parse.c @@ -943,8 +943,10 @@ qboolean CL_CheckOrEnqueDownloadFile (const char *filename, const char *localnam if (cls.demorecording) { Con_TPrintf ("Unable to download %s in record mode.\n", filename); +#if defined(MVD_RECORDING) && defined(HAVE_SERVER) if (sv_demoAutoRecord.ival) Con_TPrintf ("Note that ^[%s\\cmd\\%s 0\\^] is enabled.\n", sv_demoAutoRecord.name, sv_demoAutoRecord.name); +#endif return true; } //ZOID - can't download when playback