mirror of
https://github.com/ioquake/ioq3.git
synced 2025-02-22 11:31:26 +00:00
Show lowercased ascii in bind command
This commit is contained in:
parent
a18ae32a5e
commit
fe0a65e52e
1 changed files with 2 additions and 2 deletions
|
@ -993,9 +993,9 @@ void Key_Bind_f (void)
|
||||||
if (c == 2)
|
if (c == 2)
|
||||||
{
|
{
|
||||||
if (keys[b].binding)
|
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
|
else
|
||||||
Com_Printf ("\"%s\" is not bound\n", Cmd_Argv(1) );
|
Com_Printf ("\"%s\" is not bound\n", Key_KeynumToString(b) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue