mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-21 19:32:30 +00:00
completly disable debug output for command execution. hurts fps too much
This commit is contained in:
parent
2d6b0867e7
commit
a3c55ff7f1
1 changed files with 2 additions and 2 deletions
|
@ -202,7 +202,7 @@ Cbuf_Execute (void)
|
|||
while (cmd_text.cursize) {
|
||||
extract_line (line);
|
||||
// execute the command line
|
||||
Con_DPrintf("+%s\n",line),
|
||||
//Con_DPrintf("+%s\n",line),
|
||||
Cmd_ExecuteString (line, src_command);
|
||||
|
||||
if (cmd_wait)
|
||||
|
@ -228,7 +228,7 @@ Cbuf_Execute_Sets (void)
|
|||
// execute the command line
|
||||
if (strncmp(line,"set",3)==0
|
||||
&& isspace((int) line[3]))
|
||||
Con_DPrintf("+%s\n",line),
|
||||
//Con_DPrintf("+%s\n",line),
|
||||
Cmd_ExecuteString (line, src_command);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue