aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2018-03-15 12:27:40 +0100
committerGitHub <noreply@github.com>2018-03-15 12:27:40 +0100
commit6c6d6776c0f3d359f0205e1bea45fb41be4e3c1c (patch)
treeb0deb8277eafece270246324f1494e996268bf7e /examples
parent4cae2b8829afb3286da3a5e3b514c4752a332726 (diff)
parentf52d2de582643719814987f7335668b611a4edbd (diff)
downloadraylib-6c6d6776c0f3d359f0205e1bea45fb41be4e3c1c.tar.gz
raylib-6c6d6776c0f3d359f0205e1bea45fb41be4e3c1c.zip
Merge pull request #482 from a3f/master
raymath.h: Use C99 inline semantics
Diffstat (limited to 'examples')
-rw-r--r--examples/models/models_skybox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_skybox.c b/examples/models/models_skybox.c
index 46297e41..9f0d8c17 100644
--- a/examples/models/models_skybox.c
+++ b/examples/models/models_skybox.c
@@ -62,7 +62,7 @@ int main()
Begin3dMode(camera);
- DrawModel(skybox, Vector3Zero(), 1.0f, WHITE);
+ DrawModel(skybox, (Vector3){0, 0, 0}, 1.0f, WHITE);
DrawGrid(10, 1.0f);