mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-26 22:11:18 +00:00
debug output for EXEC_NOW
This commit is contained in:
parent
8d1a5f8b32
commit
8bcb33892e
1 changed files with 2 additions and 0 deletions
|
@ -144,9 +144,11 @@ void Cbuf_ExecuteText (int exec_when, const char *text)
|
|||
{
|
||||
case EXEC_NOW:
|
||||
if (text && strlen(text) > 0) {
|
||||
Com_DPrintf(S_COLOR_YELLOW "EXEC_NOW %s\n", text);
|
||||
Cmd_ExecuteString (text);
|
||||
} else {
|
||||
Cbuf_Execute();
|
||||
Com_DPrintf(S_COLOR_YELLOW "EXEC_NOW %s\n", cmd_text.data);
|
||||
}
|
||||
break;
|
||||
case EXEC_INSERT:
|
||||
|
|
Loading…
Reference in a new issue