aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2015-12-30 13:43:53 +0100
committerRay <raysan5@gmail.com>2015-12-30 13:43:53 +0100
commit8c8e5bb7c86e4de6036ce2f8f9b00c2587268de4 (patch)
tree9ae6fa87f66b790616071dc89706e2a2d23173d9 /src
parent59cf0f6a4249401528e933f1d70c33db0f1e382f (diff)
downloadraylib-8c8e5bb7c86e4de6036ce2f8f9b00c2587268de4.tar.gz
raylib-8c8e5bb7c86e4de6036ce2f8f9b00c2587268de4.zip
Update and rename physics.c to physac.c
Diffstat (limited to 'src')
-rw-r--r--src/physac.c (renamed from src/physics.c)8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/physics.c b/src/physac.c
index 90a8b2e9..11e1766e 100644
--- a/src/physics.c
+++ b/src/physac.c
@@ -21,10 +21,10 @@
*
**********************************************************************************************/
-//#define PHYSICS_STANDALONE // NOTE: To use the physics module as standalone lib, just uncomment this line
+//#define PHYSAC_STANDALONE // NOTE: To use the physics module as standalone lib, just uncomment this line
-#if defined(PHYSICS_STANDALONE)
- #include "physics.h"
+#if defined(PHYSAC_STANDALONE)
+ #include "physac.h"
#else
#include "raylib.h"
#endif
@@ -269,4 +269,4 @@ Collider GetCollider(int index)
Rigidbody GetRigidbody(int index)
{
return rigidbodies[index];
-} \ No newline at end of file
+}