mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 06:34:11 +00:00
fix shifted key input
This commit is contained in:
parent
7093c05587
commit
c3b2533803
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue