mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-02 14:12:47 +00:00
Optimize
This commit is contained in:
parent
e3c85a827d
commit
4afae2968e
2 changed files with 2 additions and 12 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue