diff options
| author | Jeffery Myers <[email protected]> | 2021-10-25 01:21:16 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-25 10:21:16 +0200 |
| commit | daeccd03ace3eacf7907ecca1a697c7d00961cf4 (patch) | |
| tree | 0be2045a1003eed50c1456fd1a380ff970837233 /examples/models | |
| parent | 086f76ba7abefb1b34e1baa353c5f69dfc5dafdc (diff) | |
| download | raylib-daeccd03ace3eacf7907ecca1a697c7d00961cf4.tar.gz raylib-daeccd03ace3eacf7907ecca1a697c7d00961cf4.zip | |
Fix VC warnings for examples (#2085)
Diffstat (limited to 'examples/models')
| -rw-r--r-- | examples/models/models_animation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_animation.c b/examples/models/models_animation.c index 0a375c90..2f5ae266 100644 --- a/examples/models/models_animation.c +++ b/examples/models/models_animation.c @@ -102,7 +102,7 @@ int main(void) UnloadTexture(texture); // Unload texture // Unload model animations data - for (int i = 0; i < animsCount; i++) UnloadModelAnimation(anims[i]); + for (unsigned int i = 0; i < animsCount; i++) UnloadModelAnimation(anims[i]); RL_FREE(anims); UnloadModel(model); // Unload model |
