Don't accept KEY_PAUSE for control console command

This commit is contained in:
mazmazz 2018-11-21 11:21:17 -05:00
parent 2acad7ad86
commit 9bdab67de6
1 changed files with 2 additions and 0 deletions

View File

@ -814,6 +814,8 @@ static void setcontrol(INT32 (*gc)[2], INT32 na)
return;
}
keynum = G_KeyStringtoNum(COM_Argv(2));
if (keynum == KEY_PAUSE) // fail silently; pause is hardcoded
return;
G_CheckDoubleUsage(keynum);
gc[numctrl][0] = keynum;