summaryrefslogtreecommitdiff
path: root/source/cl_console.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2008-03-06 15:05:38 +0000
committerAndrey Nazarov <skuller@skuller.net>2008-03-06 15:05:38 +0000
commitc9de9262ae2cbb799ff71d4d93dace22f33247aa (patch)
treea78ab16cc5e35eac0f897aebff01722ffa7f1aad /source/cl_console.c
parentbf0e48bb73e2d6846e15335e3625290d1f9ebc52 (diff)
Updated revision to 194.
Calling `draw' command without arguments lists registered strings. Fixed Windows compilation issues. Fixed Ctrl+C in console.
Diffstat (limited to 'source/cl_console.c')
-rw-r--r--source/cl_console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cl_console.c b/source/cl_console.c
index 1eca052..304517a 100644
--- a/source/cl_console.c
+++ b/source/cl_console.c
@@ -986,7 +986,7 @@ void Key_Console( int key ) {
return;
}
- if( ( key == 'd' || key == 'c' ) && Key_IsDown( K_CTRL ) ) {
+ if( key == 'd' && Key_IsDown( K_CTRL ) ) {
con.mode = CON_DEFAULT;
return;
}