[input] Fix incorrect arg count in in_unbind_f

Yay for copying and editing code :P
This commit is contained in:
Bill Currie 2021-11-16 20:14:33 +09:00
parent 1381932552
commit c3fa0d6464

View file

@ -432,7 +432,7 @@ in_bind_f (void)
static void
in_unbind_f (void)
{
if (Cmd_Argc () < 6) {
if (Cmd_Argc () < 5) {
Sys_Printf ("in_unbind imt device type number\n");
Sys_Printf (" imt: the name of the input mapping table in which the"
" intput will be unbound\n");