Show lowercased ascii in bind command

This commit is contained in:
Zack Middleton 2013-03-03 19:14:36 -06:00
parent a18ae32a5e
commit fe0a65e52e

View file

@ -993,9 +993,9 @@ void Key_Bind_f (void)
if (c == 2)
{
if (keys[b].binding)
Com_Printf ("\"%s\" = \"%s\"\n", Cmd_Argv(1), keys[b].binding );
Com_Printf ("\"%s\" = \"%s\"\n", Key_KeynumToString(b), keys[b].binding );
else
Com_Printf ("\"%s\" is not bound\n", Cmd_Argv(1) );
Com_Printf ("\"%s\" is not bound\n", Key_KeynumToString(b) );
return;
}