mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-23 14:49:10 +00:00
Explicit define of functions prototypes
No-parameters functions use the prototype style FunctionName(void);
This commit is contained in:
@@ -214,7 +214,7 @@ void VectorTransform(Vector3 *v, Matrix mat)
|
||||
};
|
||||
|
||||
// Return a Vector3 init to zero
|
||||
Vector3 VectorZero()
|
||||
Vector3 VectorZero(void)
|
||||
{
|
||||
Vector3 zero = { 0.0, 0.0, 0.0 };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user