From 8c5e52938d9a55175e732d48ee098430bd59196a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 31 Aug 2022 00:39:04 +0200 Subject: [PATCH] - deleted int_loz/hiz wrappers --- source/games/sw/src/game.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 069faee45..49649cf53 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -946,8 +946,6 @@ struct USER memset(&WallP, 0, sizeof(USER) - myoffsetof(USER, WallP)); } - int int_loz() const { return loz * zworldtoint; } - int int_hiz() const { return hiz * zworldtoint; } int int_ceiling_dist() const { return ceiling_dist * zworldtoint; } int int_floor_dist() const { return floor_dist * zworldtoint; } const vec3_t int_upos() const { return { int(pos.X * worldtoint), int(pos.Y * worldtoint),int(pos.Z * zworldtoint) }; }