diff --git a/examples/physics/physics_demo.c b/examples/physics/physics_demo.c index fd4c1d25c..382a4ab37 100644 --- a/examples/physics/physics_demo.c +++ b/examples/physics/physics_demo.c @@ -14,7 +14,7 @@ #include "raylib.h" #define PHYSAC_IMPLEMENTATION -#include "physac.h" +#include "extras/physac.h" int main(void) { diff --git a/examples/physics/physics_friction.c b/examples/physics/physics_friction.c index d1ade9796..f50eb67f2 100644 --- a/examples/physics/physics_friction.c +++ b/examples/physics/physics_friction.c @@ -14,7 +14,7 @@ #include "raylib.h" #define PHYSAC_IMPLEMENTATION -#include "physac.h" +#include "extras/physac.h" int main(void) { diff --git a/examples/physics/physics_movement.c b/examples/physics/physics_movement.c index d6155da15..e13caec75 100644 --- a/examples/physics/physics_movement.c +++ b/examples/physics/physics_movement.c @@ -14,7 +14,7 @@ #include "raylib.h" #define PHYSAC_IMPLEMENTATION -#include "physac.h" +#include "extras/physac.h" #define VELOCITY 0.5f diff --git a/examples/physics/physics_restitution.c b/examples/physics/physics_restitution.c index 917ab8d09..91de5589f 100644 --- a/examples/physics/physics_restitution.c +++ b/examples/physics/physics_restitution.c @@ -14,7 +14,7 @@ #include "raylib.h" #define PHYSAC_IMPLEMENTATION -#include "physac.h" +#include "extras/physac.h" int main(void) { diff --git a/examples/physics/physics_shatter.c b/examples/physics/physics_shatter.c index 6c5bebfda..493443863 100644 --- a/examples/physics/physics_shatter.c +++ b/examples/physics/physics_shatter.c @@ -14,7 +14,7 @@ #include "raylib.h" #define PHYSAC_IMPLEMENTATION -#include "physac.h" +#include "extras/physac.h" int main(void) {