From 86bb6b1cdc0173973b8c8ced8ed3290139458a18 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 2 Jan 2021 23:41:03 +1100 Subject: [PATCH] - Duke: Backport EDuke32 commit ac64e11553344084753cdd75abd898ec2c725a16 to fix buggy swinging doors, most apparent on E4L1. --- source/games/duke/src/actors.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index 14edf9177..0967c31c0 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -3685,11 +3685,6 @@ void handle_se11(DDukeActor *actor) if (ac->GetOwner() && clipinsidebox(sk->x, sk->y, j, 144L) == 1) { t[5] = 8; // Delay - int k = (s->yvel >> 3) * t[3]; - t[2] -= k; - t[4] -= k; - ms(actor); - setsprite(actor, s->pos); return; } }