(svn r1110) -Fix: Empty console commands were executed and returned error message (sign_de for GeniusDex)

This commit is contained in:
darkvater 2004-12-15 21:30:20 +00:00
parent 39b3e71239
commit ce4bff7fa5
1 changed files with 3 additions and 1 deletions

View File

@ -193,7 +193,9 @@ static void IConsoleWndProc(Window* w, WindowEvent* e)
IConsolePrintF(_iconsole_color_commands, "] %s", _iconsole_cmdline);
_iconsole_cmdbufferpos = 19;
IConsoleCmdBufferAdd(_iconsole_cmdline);
IConsoleCmdExec(_iconsole_cmdline);
if (strlen(_iconsole_cmdline) != 0) // only execute if there is something typed obviously
IConsoleCmdExec(_iconsole_cmdline);
IConsoleClearCommand();
break;
case WKC_CTRL | WKC_RETURN: