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@1022 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
bdb2f26c13
commit
1ba3e3aef2
2 changed files with 3 additions and 5 deletions
|
@ -7596,7 +7596,7 @@ void moveobjects(void)
|
|||
}
|
||||
while (i >= 0);
|
||||
}
|
||||
while (--k);
|
||||
while (k--);
|
||||
}
|
||||
|
||||
doanimations();
|
||||
|
|
|
@ -4988,8 +4988,7 @@ static int parse(void)
|
|||
|
||||
case CON_FALL:
|
||||
insptr++;
|
||||
g_sp->xoffset = 0;
|
||||
g_sp->yoffset = 0;
|
||||
g_sp->xoffset = g_sp->yoffset = 0;
|
||||
|
||||
j = gc;
|
||||
|
||||
|
@ -5006,8 +5005,7 @@ static int parse(void)
|
|||
|
||||
if (g_sp->z < (hittype[g_i].floorz-FOURSLEIGHT))
|
||||
{
|
||||
g_sp->zvel += j;
|
||||
g_sp->z+=g_sp->zvel;
|
||||
g_sp->z += g_sp->zvel += j;
|
||||
|
||||
if (g_sp->zvel > 6144) g_sp->zvel = 6144;
|
||||
|
||||
|
|
Loading…
Reference in a new issue