summaryrefslogtreecommitdiffhomepage
path: root/examples/models
diff options
context:
space:
mode:
authorJeffery Myers <[email protected]>2023-11-06 11:31:07 -0800
committerGitHub <[email protected]>2023-11-06 20:31:07 +0100
commit6cd37e57a6b38bb06cc54ecf6aa7659d4895723b (patch)
treed3dee9e7f62fc74ee06caa51b99b684292bb3f24 /examples/models
parentfc21a8e552c452804838bfbbbaadaf044a74b81e (diff)
downloadraylib-6cd37e57a6b38bb06cc54ecf6aa7659d4895723b.tar.gz
raylib-6cd37e57a6b38bb06cc54ecf6aa7659d4895723b.zip
Fix warnings in visual studio (#3512)
Diffstat (limited to 'examples/models')
-rw-r--r--examples/models/models_loading_m3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_loading_m3d.c b/examples/models/models_loading_m3d.c
index 1e56d51c..dd164957 100644
--- a/examples/models/models_loading_m3d.c
+++ b/examples/models/models_loading_m3d.c
@@ -85,7 +85,7 @@ int main(void)
animFrameCounter = 0;
animId++;
- if (animId >= animsCount) animId = 0;
+ if (animId >= (int)animsCount) animId = 0;
UpdateModelAnimation(model, anims[animId], 0);
animPlaying = true;
}