From 229ee3dbe45602f46a387720a88772ec9f875d6a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 26 Nov 2022 16:47:02 +0100 Subject: [PATCH] Revert "- did a few checks with the compatibility optioned slope adjustment and decided to enable it unconditionally." This reverts commit 6636064d1fb7e6bdac283a210190d5acc85da889. As it turned out this is not a benign change. It breaks accessibility to a key in RR-Route 66's slaughtr.map - and it's reasonable to assume if it breaks one map it may break others as well. --- source/core/gamefuncs.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index bc166b468..46c0279e5 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -29,7 +29,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. IntRect viewport3d; constexpr double MAXCLIPDISTF = 64; -CVARD(Bool, strict_compatibility, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG, "Enables stricter compatibility checks in the backend code") //--------------------------------------------------------------------------- // @@ -887,7 +886,7 @@ bool checkRangeOfWall(walltype* wal, EWallFlags flagmask, const DVector3& pos, d if (BoxOnLineSide(boxtl, boxbr, pos1, pos2 - pos1) != -1) return false; auto closest = pos.XY(); - if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE || !strict_compatibility) + if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE) // todo: need to check if it makes sense to have this always on. SquareDistToSector(closest.X, closest.Y, nextsect, &closest); calcSlope(nextsect, closest.X, closest.Y, &theZs[0], &theZs[1]); @@ -985,7 +984,7 @@ void getzrange(const DVector3& pos, sectortype* sect, double* ceilz, CollisionBa const ESpriteFlags dasprclipmask = ESpriteFlags::FromInt(cliptype >> 16); auto closest = pos.XY(); - if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE || !strict_compatibility) + if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE) SquareDistToSector(closest.X, closest.Y, sect, &closest); calcSlope(sect, closest, ceilz, florz);