mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@1023 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1ba3e3aef2
commit
07b71b1139
2 changed files with 5 additions and 5 deletions
|
@ -7432,7 +7432,7 @@ PALONLY:
|
|||
spriteext[tsprite[j].owner].tspr = NULL;
|
||||
}
|
||||
}
|
||||
while (--j > 0);
|
||||
while (j--);
|
||||
|
||||
if (j < 0) return;
|
||||
|
||||
|
|
|
@ -692,7 +692,7 @@ void CONTROL_AxisFunctionState(int32 *p1)
|
|||
if (j != AXISUNDEFINED)
|
||||
p1[j] = 1;
|
||||
}
|
||||
while (--i >= 0);
|
||||
while (i--);
|
||||
}
|
||||
|
||||
if (CONTROL_NumJoyAxes)
|
||||
|
@ -711,7 +711,7 @@ void CONTROL_AxisFunctionState(int32 *p1)
|
|||
if (j != AXISUNDEFINED)
|
||||
p1[j] = 1;
|
||||
}
|
||||
while (--i >= 0);
|
||||
while (i--);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -744,7 +744,7 @@ void CONTROL_ButtonFunctionState(int32 *p1)
|
|||
}
|
||||
mousebind[i].laststate = CONTROL_MouseButtonState[i];
|
||||
}
|
||||
while (--i >= 0);
|
||||
while (i--);
|
||||
}
|
||||
|
||||
if (CONTROL_NumJoyButtons)
|
||||
|
@ -761,7 +761,7 @@ void CONTROL_ButtonFunctionState(int32 *p1)
|
|||
if (j != KEYUNDEFINED)
|
||||
p1[j] |= CONTROL_JoyButtonState[i];
|
||||
}
|
||||
while (--i >= 0);
|
||||
while (i--);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue