debug output for EXEC_NOW

This commit is contained in:
Ludwig Nussel 2008-04-06 12:59:30 +00:00
parent 8d1a5f8b32
commit 8bcb33892e
1 changed files with 2 additions and 0 deletions

View File

@ -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: