From 82c30f551f95a31c02368d53519eda7e229e8a71 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 17 Dec 2022 20:23:54 +0100 Subject: [PATCH] - Blood: relax range check in AlignSlopes. This now checks the full range of the wall array and if outside just does nothing. E2M6 has a bogus value for this feature that asserted with the old check. --- source/games/blood/src/triggers.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/games/blood/src/triggers.cpp b/source/games/blood/src/triggers.cpp index e02ec05ef..870ba197d 100644 --- a/source/games/blood/src/triggers.cpp +++ b/source/games/blood/src/triggers.cpp @@ -2163,10 +2163,10 @@ void AlignSlopes(void) { for (auto& sect : sector) { - if (sect.slopewallofs) + if (sect.slopewallofs > 0) { - walltype* pWall = §.walls[sect.slopewallofs]; - if (pWall->twoSided()) + walltype* pWall = sect.walls.Data() + sect.slopewallofs; // we must evade range checks here - some maps try to slope to a wall outside their own sector. + if (pWall >= wall.Data() && pWall <= &wall.Last() && pWall->twoSided()) { auto pNextSector = pWall->nextSector();