From 75d675ab4d8881b50bc19a15ce183beaacc8c163 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 28 Jul 2021 17:21:34 +0200 Subject: [PATCH] Review physac.h path --- examples/physics/physics_demo.c | 2 +- examples/physics/physics_friction.c | 2 +- examples/physics/physics_movement.c | 2 +- examples/physics/physics_restitution.c | 2 +- examples/physics/physics_shatter.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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) {