diff options
author | Zack Middleton <zturtleman@gmail.com> | 2014-08-28 19:40:28 -0500 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2015-03-17 11:38:06 +0000 |
commit | 3c0e84cb40fbef18c79185e75b2917b8bce6e8e2 (patch) | |
tree | aa0d25d56ae28c8c3410f1cbee39d3fc6807e403 /src/client | |
parent | 86ad3590d558235f9e5fb7a9ad0072c4bd98787d (diff) |
SDL 2 scroll/caps/num lock keys send KEYUP event when key is released
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/cl_keys.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/client/cl_keys.c b/src/client/cl_keys.c index 0fbddd23..52a5f7a2 100644 --- a/src/client/cl_keys.c +++ b/src/client/cl_keys.c @@ -1159,7 +1159,7 @@ void CL_KeyDownEvent( int key, unsigned time ) { keys[key].down = qtrue; keys[key].repeats++; - if( keys[key].repeats == 1 && key != K_SCROLLOCK && key != K_KP_NUMLOCK && key != K_CAPSLOCK ) + if( keys[key].repeats == 1 ) anykeydown++; if( keys[K_ALT].down && key == K_ENTER ) @@ -1243,8 +1243,7 @@ void CL_KeyUpEvent( int key, unsigned time ) { keys[key].repeats = 0; keys[key].down = qfalse; - if (key != K_SCROLLOCK && key != K_KP_NUMLOCK && key != K_CAPSLOCK) - anykeydown--; + anykeydown--; if (anykeydown < 0) { anykeydown = 0; @@ -1325,9 +1324,6 @@ void Key_ClearStates (void) anykeydown = 0; for ( i=0 ; i < MAX_KEYS ; i++ ) { - if (i == K_SCROLLOCK || i == K_KP_NUMLOCK || i == K_CAPSLOCK) - continue; - if ( keys[i].down ) { CL_KeyEvent( i, qfalse, 0 ); |