From fd3ca33aea62aa71d42752c316eb19de98286fb6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 28 Sep 2022 11:30:30 +0200 Subject: [PATCH] - deleted set_int_bvel inlines --- source/core/coreactor.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/source/core/coreactor.h b/source/core/coreactor.h index 95debe659..0daf1128e 100644 --- a/source/core/coreactor.h +++ b/source/core/coreactor.h @@ -93,21 +93,6 @@ public: return vec3_t(FloatToFixed(vel.X), FloatToFixed(vel.Y), FloatToFixed(vel.Z)); } - void set_int_bvel_x(int x) - { - vel .X = FixedToFloat(x); - } - - void set_int_bvel_y(int x) - { - vel .Y = FixedToFloat(x); - } - - void set_int_bvel_z(int x) - { - vel .Z = FixedToFloat(x); - } - void ZeroVelocityXY() { vel .X = vel .Y = 0;