summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--examples/physics/physics_demo.c2
-rw-r--r--examples/physics/physics_friction.c2
-rw-r--r--examples/physics/physics_movement.c2
-rw-r--r--examples/physics/physics_restitution.c2
-rw-r--r--examples/physics/physics_shatter.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/physics/physics_demo.c b/examples/physics/physics_demo.c
index fd4c1d25..382a4ab3 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 d1ade979..f50eb67f 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 d6155da1..e13caec7 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 917ab8d0..91de5589 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 6c5bebfd..49344386 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)
{