mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 19:20:38 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@448 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
70bf6c9102
commit
c4868aa2b6
2 changed files with 3 additions and 3 deletions
|
@ -7613,7 +7613,7 @@ BOLT:
|
||||||
|
|
||||||
void moveobjects(void)
|
void moveobjects(void)
|
||||||
{
|
{
|
||||||
int k;
|
int k = 0;
|
||||||
|
|
||||||
movefta(); //ST 2
|
movefta(); //ST 2
|
||||||
moveweapons(); //ST 4
|
moveweapons(); //ST 4
|
||||||
|
@ -7628,7 +7628,7 @@ void moveobjects(void)
|
||||||
|
|
||||||
movestandables(); //ST 6
|
movestandables(); //ST 6
|
||||||
|
|
||||||
for (k=0;k<MAXSTATUS;k++)
|
for (;k<MAXSTATUS;k++)
|
||||||
{
|
{
|
||||||
int i = headspritestat[k];
|
int i = headspritestat[k];
|
||||||
while (i >= 0)
|
while (i >= 0)
|
||||||
|
|
|
@ -3342,7 +3342,7 @@ cheat_for_port_credits:
|
||||||
else if (probey == (MAXMOUSEBUTTONS-2)*2+2+1)
|
else if (probey == (MAXMOUSEBUTTONS-2)*2+2+1)
|
||||||
{
|
{
|
||||||
gametext(160,144+9+9,"SET MOUSE AIM TYPE TO TOGGLE ON/OFF",0,2+8+16);
|
gametext(160,144+9+9,"SET MOUSE AIM TYPE TO TOGGLE ON/OFF",0,2+8+16);
|
||||||
gametext(160,144+9+9+9,"IN THE PLAYER SETUP MENU",0,2+8+16);
|
gametext(160,144+9+9+9,"IN THE PLAYER SETUP MENU TO ENABLE",0,2+8+16);
|
||||||
}
|
}
|
||||||
|
|
||||||
modval(0,1,(int *)&ud.mouseflip,1,probey == (MAXMOUSEBUTTONS-2)*2+2+2);
|
modval(0,1,(int *)&ud.mouseflip,1,probey == (MAXMOUSEBUTTONS-2)*2+2+2);
|
||||||
|
|
Loading…
Reference in a new issue