mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-20 20:41:10 +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
d23d0e0e5b
commit
bef710aa8f
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…
Add table
Reference in a new issue