From 4c5ad4bb42bdfeb6322094f8b6bcbf7b80ef26a7 Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 20 Aug 2019 10:05:32 -0700 Subject: [PATCH] I alway manage to fuck up a merge. Yes, it's true! --- src/console.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/console.c b/src/console.c index d5d5fdb0..5a5f6a64 100644 --- a/src/console.c +++ b/src/console.c @@ -1112,11 +1112,7 @@ boolean CON_Responder(event_t *ev) else if (key == KEY_KPADSLASH) key = '/'; - if (key >= 'a' && key <= 'z') - { - if (shiftdown) - key = shiftxform[key]; - } + key = CON_ShiftChar(key); // enter a char into the command prompt if (key < 32 || key > 127)