mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 21:51:09 +00:00
* Fix the operation of the delete key in *nix
This commit is contained in:
parent
4ab96373e6
commit
3404fbac56
1 changed files with 6 additions and 0 deletions
|
@ -1209,6 +1209,12 @@ void CL_CharEvent( int key ) {
|
|||
return;
|
||||
}
|
||||
|
||||
// delete is not a printable character and is
|
||||
// otherwise handled by Field_KeyDownEvent
|
||||
if ( key == 127 ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// distribute the key down event to the apropriate handler
|
||||
if ( cls.keyCatchers & KEYCATCH_CONSOLE )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue