mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Don't consider CLIPCURBHEIGHT for ceiling clipping
git-svn-id: https://svn.eduke32.com/eduke32@8047 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1f5866295c
commit
8a01335c26
1 changed files with 1 additions and 1 deletions
|
@ -816,7 +816,7 @@ static bool cliptestsector(int const dasect, int const nextsect, int32_t const f
|
||||||
|
|
||||||
((sec2->ceilingstat&1) == 0 &&
|
((sec2->ceilingstat&1) == 0 &&
|
||||||
posz <= dacz2+(ceildist-1) &&
|
posz <= dacz2+(ceildist-1) &&
|
||||||
dacz2 > dacz+CLIPCURBHEIGHT)); // ceilings check the same conditions ^^^^^
|
dacz2 > dacz /*+CLIPCURBHEIGHT*/)); // ceilings check the same conditions ^^^^^
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t clipmovex(vec3_t *pos, int16_t *sectnum,
|
int32_t clipmovex(vec3_t *pos, int16_t *sectnum,
|
||||||
|
|
Loading…
Reference in a new issue