aboutsummaryrefslogtreecommitdiff
path: root/src/raymath.h
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2014-09-03 17:06:10 +0200
committerraysan5 <raysan5@gmail.com>2014-09-03 17:06:10 +0200
commitc56ef738ed1ad440975bd362248c7b3e33c05a0e (patch)
treeaeb16774c925665970346e44c3c7e966146277fe /src/raymath.h
parentd2b98fbb5ce8d82bb2c46f3d66ffda58d6ad5c6f (diff)
downloadraylib-c56ef738ed1ad440975bd362248c7b3e33c05a0e.tar.gz
raylib-c56ef738ed1ad440975bd362248c7b3e33c05a0e.zip
Explicit define of functions prototypes
No-parameters functions use the prototype style FunctionName(void);
Diffstat (limited to 'src/raymath.h')
-rw-r--r--src/raymath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raymath.h b/src/raymath.h
index 3296681f..5dcfe061 100644
--- a/src/raymath.h
+++ b/src/raymath.h
@@ -92,7 +92,7 @@ float VectorDistance(Vector3 v1, Vector3 v2); // Calculate distance be
Vector3 VectorLerp(Vector3 v1, Vector3 v2, float amount); // Calculate linear interpolation between two vectors
Vector3 VectorReflect(Vector3 vector, Vector3 normal); // Calculate reflected vector to normal
void VectorTransform(Vector3 *v, Matrix mat); // Transforms a Vector3 with a given Matrix
-Vector3 VectorZero(); // Return a Vector3 init to zero
+Vector3 VectorZero(void); // Return a Vector3 init to zero
//------------------------------------------------------------------------------------
// Functions Declaration to work with Matrix