summaryrefslogtreecommitdiffhomepage
path: root/examples/models/models_loading_vox.c
diff options
context:
space:
mode:
authorRay <[email protected]>2022-08-02 18:12:57 +0200
committerRay <[email protected]>2022-08-02 18:12:57 +0200
commit5840cd6e50890fdc8bb964cf4ed86524f1ca1675 (patch)
tree067450e2987cf577d6eba56b49608f6b4e52a2e2 /examples/models/models_loading_vox.c
parentdf5514088eaa7e5e7d2d589f4adc278897106ddc (diff)
downloadraylib-5840cd6e50890fdc8bb964cf4ed86524f1ca1675.tar.gz
raylib-5840cd6e50890fdc8bb964cf4ed86524f1ca1675.zip
Remove unneeded comment
Diffstat (limited to 'examples/models/models_loading_vox.c')
-rw-r--r--examples/models/models_loading_vox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_loading_vox.c b/examples/models/models_loading_vox.c
index 9dc3cf67..80226d0a 100644
--- a/examples/models/models_loading_vox.c
+++ b/examples/models/models_loading_vox.c
@@ -79,7 +79,7 @@ int main(void)
{
// Update
//----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update our camera to orbit
+ UpdateCamera(&camera);
// Cycle between models on mouse click
if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT)) currentModel = (currentModel + 1)%MAX_VOX_FILES;