summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2013-03-03 19:14:36 -0600
committerTim Angus <tim@ngus.net>2013-03-19 16:41:14 +0000
commit0ee723eb4b35d858c10a5c907704607a769e6aa4 (patch)
treef525a1aecb1a4731a4ce0061cbc505e5db047ec7 /src
parentee010362b2bcefdd52141f19c22e3f3e32f21e4d (diff)
Show lowercased ascii in bind command
Diffstat (limited to 'src')
-rw-r--r--src/client/cl_keys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/cl_keys.c b/src/client/cl_keys.c
index 8654f563..3023a2c8 100644
--- a/src/client/cl_keys.c
+++ b/src/client/cl_keys.c
@@ -945,9 +945,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;
}