mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed SE21 handler.
This one is most prominently noticeable in WW2GI's first map where blowing up a crack has no effect. This must have happened when removing all those dangerous pointer to long casts that were so popular back in the bad old days. Fixes #266
This commit is contained in:
parent
99f1f0952a
commit
a46792e519
1 changed files with 1 additions and 1 deletions
|
@ -4349,7 +4349,7 @@ void handle_se21(DDukeActor* actor)
|
|||
|
||||
if (sc->extra == 0)
|
||||
{
|
||||
lp += s->zvel;
|
||||
*lp += s->zvel;
|
||||
|
||||
if (abs(*lp - s->z) < 1024)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue