summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2011-01-16 22:48:48 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:51 +0000
commitf14ad77dc064855e203b49dc0c55d74a37f7c506 (patch)
tree97c04a842f74ed50edbf96baee092bb21ea38c73 /src/client
parent376f902cc17fb99aced8dbf8c6721f1d204ac0d6 (diff)
* (bug 4684) Don't stop playing a demo when someone presses TAB etc. (Giulio Dignitoso)
Diffstat (limited to 'src/client')
-rw-r--r--src/client/cl_keys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/cl_keys.c b/src/client/cl_keys.c
index db8dfd82..212ac8d5 100644
--- a/src/client/cl_keys.c
+++ b/src/client/cl_keys.c
@@ -1144,7 +1144,7 @@ void CL_KeyDownEvent( int key, unsigned time )
// keys can still be used for bound actions
if ( ( key < 128 || key == K_MOUSE1 ) &&
- ( clc.demoplaying || cls.state == CA_CINEMATIC ) && Key_GetCatcher( ) == 0 ) {
+ ( !clc.demoplaying && cls.state == CA_CINEMATIC ) && Key_GetCatcher( ) == 0 ) {
if (Cvar_VariableValue ("com_cameraMode") == 0) {
Cvar_Set ("nextdemo","");