Fix ctrl-c etc codes for edit fields

This commit is contained in:
Zack Middleton 2014-03-17 12:46:09 -05:00
parent 344ff23164
commit 9f22ae9cb2
1 changed files with 2 additions and 0 deletions

View File

@ -731,6 +731,8 @@ static void IN_ProcessEvents( void )
if( key == K_BACKSPACE )
Com_QueueEvent( 0, SE_CHAR, CTRL('h'), 0, 0, NULL );
else if( keys[K_CTRL].down && key >= 'a' && key <= 'z' )
Com_QueueEvent( 0, SE_CHAR, CTRL(key), 0, 0, NULL );
lastKeyDown = key;
break;