From 6cd37e57a6b38bb06cc54ecf6aa7659d4895723b Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Mon, 6 Nov 2023 11:31:07 -0800 Subject: Fix warnings in visual studio (#3512) --- examples/models/models_loading_m3d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/models') 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; } -- cgit v1.2.3