diff options
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; } |