From da3e4fbe36d516925d3201360e43ff7250867735 Mon Sep 17 00:00:00 2001 From: n00b Date: Sat, 7 Dec 2024 12:52:32 -0500 Subject: [PATCH] Fixed a bullet include for windows --- rcbasic_runtime/rc_gfx_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcbasic_runtime/rc_gfx_core.h b/rcbasic_runtime/rc_gfx_core.h index 4e80130..156a5ab 100644 --- a/rcbasic_runtime/rc_gfx_core.h +++ b/rcbasic_runtime/rc_gfx_core.h @@ -1,7 +1,7 @@ #ifndef RC_GFX_CORE_H_INCLUDED #define RC_GFX_CORE_H_INCLUDED -#ifdef RC_ANDROID +#if defined(RC_ANDROID) || defined(RC_WINDOWS) #include "SDL.h" #include "btBulletDynamicsCommon.h" #include "BulletSoftBody/btSoftRigidDynamicsWorld.h"