aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--code/qcommon/cmd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/code/qcommon/cmd.c b/code/qcommon/cmd.c
index 5af0f95..8ce1526 100644
--- a/code/qcommon/cmd.c
+++ b/code/qcommon/cmd.c
@@ -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: