Make CON_Responder eat Ctrl+key combos that have no effect, instead of passing the key on to G_Responder

This commit is contained in:
Monster Iestyn 2018-02-20 17:06:03 +00:00
parent 4cbe2e1622
commit fb3e78c020
1 changed files with 3 additions and 2 deletions

View File

@ -842,8 +842,9 @@ boolean CON_Responder(event_t *ev)
return true;
}
// don't eat the key
return false;
// ...why shouldn't it eat the key? if it doesn't, it just means you
// can control Sonic from the console, which is silly
return true; //return false;
}
// command completion forward (tab) and backward (shift-tab)