make /command work when not using curses

This commit is contained in:
Bill Currie 2003-04-26 05:12:16 +00:00
parent 4a73d5dc45
commit 62e36ef747
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ C_ProcessInput (void)
const char *cmd = Sys_ConsoleInput (); const char *cmd = Sys_ConsoleInput ();
if (!cmd) if (!cmd)
break; break;
Cbuf_AddText (con_data.cbuf, cmd); C_ExecLine (cmd);
} }
} }