summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorRay <[email protected]>2016-11-26 11:12:31 +0100
committerRay <[email protected]>2016-11-26 11:12:31 +0100
commitab9f5d578025f71abd3b242170d6fb8ea6c2c297 (patch)
tree8d087c5f84fc35d9a02d90cf58ca0e2d907d18a1 /examples
parentf5d792e5514188da56bb35c205e058bca473a300 (diff)
downloadraylib-ab9f5d578025f71abd3b242170d6fb8ea6c2c297.tar.gz
raylib-ab9f5d578025f71abd3b242170d6fb8ea6c2c297.zip
Corrected path slash separator
Diffstat (limited to 'examples')
-rw-r--r--examples/physics_demo.c2
-rw-r--r--examples/physics_friction.c2
-rw-r--r--examples/physics_movement.c2
-rw-r--r--examples/physics_restitution.c2
-rw-r--r--examples/physics_shatter.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/physics_demo.c b/examples/physics_demo.c
index bed7c94d..de8d515e 100644
--- a/examples/physics_demo.c
+++ b/examples/physics_demo.c
@@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
-#include "..\src\physac.h"
+#include "../src/physac.h"
int main()
{
diff --git a/examples/physics_friction.c b/examples/physics_friction.c
index 28d3c4b8..a4baad53 100644
--- a/examples/physics_friction.c
+++ b/examples/physics_friction.c
@@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
-#include "..\src\physac.h"
+#include "../src/physac.h"
int main()
{
diff --git a/examples/physics_movement.c b/examples/physics_movement.c
index ca18f3df..ee97845f 100644
--- a/examples/physics_movement.c
+++ b/examples/physics_movement.c
@@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
-#include "..\src\physac.h"
+#include "../src/physac.h"
#define VELOCITY 0.5f
diff --git a/examples/physics_restitution.c b/examples/physics_restitution.c
index 3543db69..378f6f24 100644
--- a/examples/physics_restitution.c
+++ b/examples/physics_restitution.c
@@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
-#include "..\src\physac.h"
+#include "../src/physac.h"
int main()
{
diff --git a/examples/physics_shatter.c b/examples/physics_shatter.c
index 2cb9d195..637a163e 100644
--- a/examples/physics_shatter.c
+++ b/examples/physics_shatter.c
@@ -12,7 +12,7 @@
#include "raylib.h"
#define PHYSAC_IMPLEMENTATION
-#include "..\src\physac.h"
+#include "../src/physac.h"
int main()
{