From: divverent Date: Tue, 1 Nov 2011 09:38:50 +0000 (+0000) Subject: VM_Warning should appear even if developer is 0. X-Git-Tag: xonotic-v0.6.0~163^2~52 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0abbc93f5768dc943608857fdb53c3aa43b95022;p=xonotic%2Fdarkplaces.git VM_Warning should appear even if developer is 0. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11505 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/prvm_cmds.c b/prvm_cmds.c index 763942e7..af1709ba 100644 --- a/prvm_cmds.c +++ b/prvm_cmds.c @@ -29,7 +29,7 @@ void VM_Warning(prvm_prog_t *prog, const char *fmt, ...) dpvsnprintf(msg,sizeof(msg),fmt,argptr); va_end(argptr); - Con_DPrint(msg); + Con_Print(msg); // TODO: either add a cvar/cmd to control the state dumping or replace some of the calls with Con_Printf [9/13/2006 Black] if(prvm_backtraceforwarnings.integer && recursive != realtime) // NOTE: this compares to the time, just in case if PRVM_PrintState causes a Host_Error and keeps recursive set