mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- reinstated bug in pushmove not to check the first wall when scanning backwards.
For real this time
This commit is contained in:
parent
4904466fd6
commit
6e3b6028e9
1 changed files with 1 additions and 1 deletions
|
@ -871,7 +871,7 @@ int pushmove_(vec3_t *const vect, int *const sectnum,
|
|||
if (dir > 0)
|
||||
startwall = sec->wallptr, endwall = startwall + sec->wallnum;
|
||||
else
|
||||
endwall = sec->wallptr - 1, startwall = endwall + sec->wallnum - 1;
|
||||
endwall = sec->wallptr, startwall = endwall + sec->wallnum - 1;
|
||||
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue