From b422b049c144311a5ab503d614fe35d4a5168b9f Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 5 Jan 2022 10:03:33 +1100 Subject: [PATCH] - Duke: Fix bad interp check in RR's `dofurniture()`. --- source/games/duke/src/sectors_r.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/games/duke/src/sectors_r.cpp b/source/games/duke/src/sectors_r.cpp index b53215d04..ba63ccf5e 100644 --- a/source/games/duke/src/sectors_r.cpp +++ b/source/games/duke/src/sectors_r.cpp @@ -2847,8 +2847,6 @@ void dofurniture(walltype* wlwal, sectortype* sectp, int snum) for (auto& wal : wallsofsector(nextsect)) { - x = wal.pos.X; - y = wal.pos.Y; switch (wlwal->lotag) { case 42: @@ -2857,7 +2855,7 @@ void dofurniture(walltype* wlwal, sectortype* sectp, int snum) case 43: vertexscan(&wal, [=](walltype* w) { - StartInterpolation(w, wlwal->lotag == 41 || wlwal->lotag == 42 ? Interp_Wall_X : Interp_Wall_Y); + StartInterpolation(w, wlwal->lotag == 41 || wlwal->lotag == 43 ? Interp_Wall_X : Interp_Wall_Y); }); break; }