From 2fc6b2e085d02077b13b38df5d441fec25144d40 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Mon, 9 Sep 2024 00:16:30 -0700 Subject: [PATCH] com_phys_ode.c: remove #ifndef check that breaks custom builds --- engine/common/com_phys_ode.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/engine/common/com_phys_ode.c b/engine/common/com_phys_ode.c index a599f5656..32d5fa4e9 100644 --- a/engine/common/com_phys_ode.c +++ b/engine/common/com_phys_ode.c @@ -34,10 +34,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "../../plugins/plugin.h" #include "../../plugins/engine.h" -#ifndef HAVE_LEGACY -#undef USERBE -#endif - #define DEG2RAD(d) (d * M_PI * (1/180.0f)) #define RAD2DEG(d) ((d*180) / M_PI)