This commit is contained in:
TehRealSalt 2018-10-16 12:25:51 -04:00
parent bca6e9165b
commit 35528276d2
2 changed files with 2 additions and 12 deletions

View File

@ -751,18 +751,13 @@ boolean CON_Responder(event_t *ev)
if (ev->data1 >= KEY_MOUSE1) // See also: HUD_Responder
{
INT32 i;
boolean p1control = false;
for (i = 0; i < num_gamecontrols; i++)
{
if (gamecontrol[i][0] == ev->data1 || gamecontrol[i][1] == ev->data1)
{
p1control = true;
break;
}
}
if (!p1control)
if (i == num_gamecontrols)
return false;
}

View File

@ -1076,18 +1076,13 @@ boolean HU_Responder(event_t *ev)
if (ev->data1 >= KEY_MOUSE1)
{
INT32 i;
boolean p1control = false;
for (i = 0; i < num_gamecontrols; i++)
{
if (gamecontrol[i][0] == ev->data1 || gamecontrol[i][1] == ev->data1)
{
p1control = true;
break;
}
}
if (!p1control)
if (i == num_gamecontrols)
return false;
}