From aee266808810786255cf42812bb1639d463cdf08 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 17 Nov 2021 22:47:28 +0100 Subject: [PATCH] - RR shootWeapon --- source/games/duke/src/player_r.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index 5ad5fc275..91edfb032 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -415,8 +415,8 @@ static void shootweapon(DDukeActor* actor, int p, int sx, int sy, int sz, int sa } auto l = spawn(spark, BULLETHOLE); l->s->xvel = -1; - l->s->ang = getangle(wal->x - wall[wal->point2].x, - wal->y - wall[wal->point2].y) + 512; + auto delta = wal->delta(); + l->s->ang = getangle(-delta.x, -delta.y) + 512; ssp(l, CLIPMASK0); } @@ -2355,6 +2355,7 @@ static void underwater(int snum, ESyncBits actions, int psect, int fz, int cz) void onMotorcycleMove(int snum, int psect, int j) { + auto wal = &wall[j]; auto p = &ps[snum]; auto pact = p->GetActor(); auto s = pact->s;