Fix warnings in visual studio (#3512)

This commit is contained in:
Jeffery Myers
2023-11-06 11:31:07 -08:00
committed by GitHub
parent fc21a8e552
commit 6cd37e57a6
11 changed files with 21 additions and 21 deletions

View File

@@ -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;
}