mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 12:21:19 +00:00
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:
parent
4cbe2e1622
commit
fb3e78c020
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue