[Change] Display keybindings in uppercase.

This commit is contained in:
Allanis 2014-03-15 21:10:27 +00:00
parent d49064dde0
commit 9a61e0281a

View File

@ -111,7 +111,7 @@ static void menuKeybinds_update(unsigned int wid, char* name) {
/* Is key. */ /* Is key. */
if(isalnum(key)) if(isalnum(key))
snprintf(bind, 32, "%s%c", pre, (char)key); snprintf(bind, 32, "%s%c", pre, toupper((char)key));
else else
snprintf(bind, 32, "%s<%d>", pre, key); snprintf(bind, 32, "%s<%d>", pre, key);
break; break;