From fe0a65e52e0f633a50a0aa86f04263722dde4707 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 3 Mar 2013 19:14:36 -0600 Subject: [PATCH] Show lowercased ascii in bind command --- code/client/cl_keys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/client/cl_keys.c b/code/client/cl_keys.c index 9bfb7144..be2a93a9 100644 --- a/code/client/cl_keys.c +++ b/code/client/cl_keys.c @@ -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; }