summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/cl_keys.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/cl_keys.c b/src/client/cl_keys.c
index c9c8af53..b1c81e65 100644
--- a/src/client/cl_keys.c
+++ b/src/client/cl_keys.c
@@ -1213,6 +1213,9 @@ void CL_KeyDownEvent( int key, unsigned time )
return;
}
+ // send the bound action
+ CL_ParseBinding( key, qtrue, time );
+
// distribute the key down event to the apropriate handler
if ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) {
Console_Key( key );
@@ -1227,9 +1230,6 @@ void CL_KeyDownEvent( int key, unsigned time )
} else if ( clc.state == CA_DISCONNECTED ) {
Console_Key( key );
}
-
- // send the bound action
- CL_ParseBinding( key, qtrue, time );
}
/*