* Fix the operation of the delete key in *nix

This commit is contained in:
Tim Angus 2006-01-22 17:07:21 +00:00
parent 4ab96373e6
commit 3404fbac56

View file

@ -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 )
{