diff options
-rw-r--r-- | src/client/cl_keys.c | 4 |
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; } |