mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 12:21:19 +00:00
Potentially fix 64-bit builds crashing on certain replays
This commit is contained in:
parent
e52871b2ea
commit
9ddea94590
1 changed files with 2 additions and 4 deletions
|
@ -5141,15 +5141,13 @@ void G_GhostTicker(void)
|
||||||
for (i = 0; i < count; i++)
|
for (i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
g->p += 4; // reserved
|
g->p += 4; // reserved
|
||||||
type = READUINT32(g->p);
|
demo_p += 4; // backwards compat.
|
||||||
health = READUINT16(g->p);
|
health = READUINT16(g->p);
|
||||||
x = READFIXED(g->p);
|
x = READFIXED(g->p);
|
||||||
y = READFIXED(g->p);
|
y = READFIXED(g->p);
|
||||||
z = READFIXED(g->p);
|
z = READFIXED(g->p);
|
||||||
angle = READANGLE(g->p);
|
angle = READANGLE(g->p);
|
||||||
if (!(mobjinfo[type].flags & MF_SHOOTABLE)
|
if (health != 0 || i >= 4) // only spawn for the first 4 hits per frame, to prevent ghosts from splode-spamming too bad.
|
||||||
|| !(mobjinfo[type].flags & (MF_ENEMY|MF_MONITOR))
|
|
||||||
|| health != 0 || i >= 4) // only spawn for the first 4 hits per frame, to prevent ghosts from splode-spamming too bad.
|
|
||||||
continue;
|
continue;
|
||||||
poof = P_SpawnMobj(x, y, z, MT_GHOST);
|
poof = P_SpawnMobj(x, y, z, MT_GHOST);
|
||||||
poof->angle = angle;
|
poof->angle = angle;
|
||||||
|
|
Loading…
Reference in a new issue