Skip to content
Snippets Groups Projects
Commit 8fb9a3b3 authored by Inuyasha's avatar Inuyasha
Browse files

Ignore modifier keys in chat

(Fixes LSHIFT typing D repeatedly into chat)
parent fe3916a6
Branches
No related tags found
No related merge requests found
......@@ -790,6 +790,14 @@ boolean HU_Responder(event_t *ev)
}
else // if chat_on
{
// Ignore modifier keys
// Note that we do this here so users can still set
// their chat keys to one of these, if they so desire.
if (ev->data1 == KEY_LSHIFT || ev->data1 == KEY_RSHIFT
|| ev->data1 == KEY_LCTRL || ev->data1 == KEY_RCTRL
|| ev->data1 == KEY_LALT || ev->data1 == KEY_RALT)
return true;
c = (UINT8)ev->data1;
// use console translations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment