From 751b73479540f5763c9a1ab9957352b138959bcb Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 1 Aug 2019 06:49:50 +0000 Subject: [PATCH] Fix issue rendering TROR when the camera's z coordinate is right on the portal git-svn-id: https://svn.eduke32.com/eduke32@7858 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/engine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/build/src/engine.cpp b/source/build/src/engine.cpp index 9e67b6318..27ae0c562 100644 --- a/source/build/src/engine.cpp +++ b/source/build/src/engine.cpp @@ -929,8 +929,8 @@ void yax_drawrooms(void (*SpriteAnimFunc)(int32_t,int32_t,int32_t,int32_t), } if ((SECTORFLD(i,stat, cf)&2) || - (cf==0 && globalposz > sector[i].ceilingz) || - (cf==1 && globalposz < sector[i].floorz)) + (cf==0 && globalposz >= sector[i].ceilingz) || + (cf==1 && globalposz <= sector[i].floorz)) { havebunch[j>>3] |= (1<<(j&7)); bunches[cf][bnchnum[cf]++] = j;