Remove code that converts uppercase letters to lower, when coming from dedicated console

This commit is contained in:
James R 2021-04-04 17:01:54 -07:00
parent df9b5c4312
commit 84191252d2
1 changed files with 0 additions and 4 deletions

View File

@ -1303,10 +1303,6 @@ boolean CON_Responder(event_t *ev)
if (key < 32 || key > 127)
return true;
// add key to cmd line here
if (key >= 'A' && key <= 'Z' && !(shiftdown ^ capslock)) //this is only really necessary for dedicated servers
key = key + 'a' - 'A';
if (input_sel != input_cur)
CON_InputDelSelection();
CON_InputAddChar(key);