diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-03-06 15:05:38 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-03-06 15:05:38 +0000 |
commit | c9de9262ae2cbb799ff71d4d93dace22f33247aa (patch) | |
tree | a78ab16cc5e35eac0f897aebff01722ffa7f1aad /source/cl_console.c | |
parent | bf0e48bb73e2d6846e15335e3625290d1f9ebc52 (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.c | 2 |
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; } |