fix shifted key input

This commit is contained in:
Bill Currie 2002-01-17 21:49:47 +00:00
parent 7093c05587
commit c3b2533803

View file

@ -510,7 +510,7 @@ C_KeyEvent (key_t key, short unicode, qboolean down)
}
il = input_line;
}
Con_ProcessInputLine (il, key);
Con_ProcessInputLine (il, key >= 256 ? key : unicode);
}
/* DRAWING */