Don't send Char_Event to Console if it isn't opened

This commit is contained in:
Daniel Gibson 2016-01-02 19:08:27 +01:00
parent 0fb8d80507
commit 4a762c0002

View file

@ -966,10 +966,12 @@ Char_Event(int key)
break;
/* Console */
case key_game:
case key_console:
Key_Console(key);
break;
default: /* incl. key_game */
break;
}
}