mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 09:51:40 +00:00
[input] Fix incorrect arg count in in_unbind_f
Yay for copying and editing code :P
This commit is contained in:
parent
1381932552
commit
c3fa0d6464
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ in_bind_f (void)
|
||||||
static void
|
static void
|
||||||
in_unbind_f (void)
|
in_unbind_f (void)
|
||||||
{
|
{
|
||||||
if (Cmd_Argc () < 6) {
|
if (Cmd_Argc () < 5) {
|
||||||
Sys_Printf ("in_unbind imt device type number\n");
|
Sys_Printf ("in_unbind imt device type number\n");
|
||||||
Sys_Printf (" imt: the name of the input mapping table in which the"
|
Sys_Printf (" imt: the name of the input mapping table in which the"
|
||||||
" intput will be unbound\n");
|
" intput will be unbound\n");
|
||||||
|
|
Loading…
Reference in a new issue