Skip to content
Snippets Groups Projects
Commit fb3e78c0 authored by Monster Iestyn's avatar Monster Iestyn
Browse files

Make CON_Responder eat Ctrl+key combos that have no effect, instead of passing...

Make CON_Responder eat Ctrl+key combos that have no effect, instead of passing the key on to G_Responder
parent 4cbe2e16
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment