diff options
| author | Ray <raysan5@gmail.com> | 2018-03-15 12:27:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-15 12:27:40 +0100 |
| commit | 6c6d6776c0f3d359f0205e1bea45fb41be4e3c1c (patch) | |
| tree | b0deb8277eafece270246324f1494e996268bf7e /examples | |
| parent | 4cae2b8829afb3286da3a5e3b514c4752a332726 (diff) | |
| parent | f52d2de582643719814987f7335668b611a4edbd (diff) | |
| download | raylib-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.c | 2 |
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); |
