mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 19:38:15 +00:00
Fix warnings in visual studio (#3512)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user