Support Unicode characters greater than 0xFF in cl_consoleKeys
Unrelated: make '0x' value be -1 (invalid) instead of 0. Reported by MAN-AT-ARMS.
This commit is contained in:
parent
00c3480938
commit
0d6edd227a
2 changed files with 5 additions and 6 deletions
|
@ -138,8 +138,7 @@ static qboolean IN_IsConsoleKey( keyNum_t key, int character )
|
|||
if( !token[ 0 ] )
|
||||
break;
|
||||
|
||||
if( strlen( token ) == 4 )
|
||||
charCode = Com_HexStrToInt( token );
|
||||
charCode = Com_HexStrToInt( token );
|
||||
|
||||
if( charCode > 0 )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue