From 95477aaefbca89644e72a692d348bd1fcc37651d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 3 Sep 2022 21:38:53 +0200 Subject: [PATCH] - add_int_ppos_Z is gone now. --- source/games/sw/src/game.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 9cb73ba54..c7adbc2a8 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -584,10 +584,6 @@ struct PLAYER { return { int(pos.X * worldtoint), int(pos.Y * worldtoint), int(pos.Z * zworldtoint) }; } - void add_int_ppos_Z(int z) - { - pos.Z += z * zinttoworld; - } void add_int_ppos_XY(vec2_t z) { pos.XY() += { z.X * inttoworld, z.Y * inttoworld };