- reinstated bug in pushmove not to check the first wall when scanning backwards.

For real this time
This commit is contained in:
Christoph Oelckers 2021-12-20 23:56:39 +01:00
parent 4904466fd6
commit 6e3b6028e9

View file

@ -871,7 +871,7 @@ int pushmove_(vec3_t *const vect, int *const sectnum,
if (dir > 0) if (dir > 0)
startwall = sec->wallptr, endwall = startwall + sec->wallnum; startwall = sec->wallptr, endwall = startwall + sec->wallnum;
else else
endwall = sec->wallptr - 1, startwall = endwall + sec->wallnum - 1; endwall = sec->wallptr, startwall = endwall + sec->wallnum - 1;
int i; int i;