summaryrefslogtreecommitdiffhomepage
path: root/examples/models/models_rlgl_solar_system.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-03-19 20:14:14 +0100
committerRay <[email protected]>2021-03-19 20:14:14 +0100
commitbe8d5a7ae2e5f89e7a03060a852883556c56c405 (patch)
tree13cdfca6a13c572cf0ae5d9cbecd43fb90b5af94 /examples/models/models_rlgl_solar_system.c
parent990906871435fa056d9002810c9f4a46076207bb (diff)
downloadraylib-be8d5a7ae2e5f89e7a03060a852883556c56c405.tar.gz
raylib-be8d5a7ae2e5f89e7a03060a852883556c56c405.zip
RENAMED: camera.type -> camera.projection
Diffstat (limited to 'examples/models/models_rlgl_solar_system.c')
-rw-r--r--examples/models/models_rlgl_solar_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_rlgl_solar_system.c b/examples/models/models_rlgl_solar_system.c
index a6698e69..e6a28cf6 100644
--- a/examples/models/models_rlgl_solar_system.c
+++ b/examples/models/models_rlgl_solar_system.c
@@ -43,7 +43,7 @@ int main(void)
camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
camera.fovy = 45.0f;
- camera.type = CAMERA_PERSPECTIVE;
+ camera.projection = CAMERA_PERSPECTIVE;
SetCameraMode(camera, CAMERA_FREE);