From 73c5bef58070520314a846156478ca4b4f26d44b Mon Sep 17 00:00:00 2001 From: Mitch Richters Date: Sat, 27 Nov 2021 21:23:14 +1100 Subject: [PATCH] - Blood: Remove duplicated code from `render3DViewPolymost()` that's already performed in `viewDrawScreen()`. --- source/games/blood/src/_polymost.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/source/games/blood/src/_polymost.cpp b/source/games/blood/src/_polymost.cpp index 5d687df6e..e01955e73 100644 --- a/source/games/blood/src/_polymost.cpp +++ b/source/games/blood/src/_polymost.cpp @@ -130,18 +130,6 @@ void render3DViewPolymost(int nSectnum, int cX, int cY, int cZ, binangle cA, fix renderSetAspect(v1, yxaspect); - - int ceilingZ, floorZ; - getzsofslope(nSectnum, cX, cY, &ceilingZ, &floorZ); - if (cZ >= floorZ) - { - cZ = floorZ - (getUpperLink(nSectnum) ? 0 : (8 << 8)); - } - if (cZ <= ceilingZ) - { - cZ = ceilingZ + (getLowerLink(nSectnum) ? 0 : (8 << 8)); - } - cH = q16horiz(ClipRange(cH.asq16(), gi->playerHorizMin(), gi->playerHorizMax())); RORHACK: bool ror_status[16]; for (int i = 0; i < 16; i++)