From 3df367646899442947ea0da7948cde19925033db Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 8 Sep 2022 00:52:37 +0200 Subject: [PATCH] - got rid of int_ppos() --- source/games/sw/src/game.h | 5 ----- source/games/sw/src/weapon.cpp | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 31a6c2197..93bd0a143 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -572,11 +572,6 @@ struct PLAYER DVector3 pos, opos, oldpos; - const vec3_t int_ppos() const - { - return { int(pos.X * worldtoint), int(pos.Y * worldtoint), int(pos.Z * zworldtoint) }; - } - DSWActor* actor; // this may not be a TObjPtr! TObjPtr lowActor, highActor; TObjPtr remoteActor; diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index b6d75167b..f75286297 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -14646,7 +14646,7 @@ int InitUzi(PLAYER* pp) if (RANDOM_P2(1024) < 400) InitTracerUzi(pp); - nz = pp->int_ppos().Z + pp->bob_z * zworldtoint; + nz = (pp->pos.Z + pp->bob_z) * zworldtoint; daz = nz; daang = 32; if (WeaponAutoAimHitscan(pp->actor, &daz, &daang, false) != nullptr)