From 9a61e0281ad7c678ddc8de4c930cc6173f117881 Mon Sep 17 00:00:00 2001 From: Allanis Date: Sat, 15 Mar 2014 21:10:27 +0000 Subject: [PATCH] [Change] Display keybindings in uppercase. --- src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index facc8d4..7b39271 100644 --- a/src/options.c +++ b/src/options.c @@ -111,7 +111,7 @@ static void menuKeybinds_update(unsigned int wid, char* name) { /* Is key. */ if(isalnum(key)) - snprintf(bind, 32, "%s%c", pre, (char)key); + snprintf(bind, 32, "%s%c", pre, toupper((char)key)); else snprintf(bind, 32, "%s<%d>", pre, key); break;