aboutsummaryrefslogtreecommitdiff
path: root/raylib/examples/models/models_loading_gltf.c
diff options
context:
space:
mode:
Diffstat (limited to 'raylib/examples/models/models_loading_gltf.c')
-rw-r--r--raylib/examples/models/models_loading_gltf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/raylib/examples/models/models_loading_gltf.c b/raylib/examples/models/models_loading_gltf.c
index 2884731..1d5d516 100644
--- a/raylib/examples/models/models_loading_gltf.c
+++ b/raylib/examples/models/models_loading_gltf.c
@@ -44,7 +44,7 @@ int main(void)
Model model = LoadModel("resources/models/gltf/robot.glb");
// Load gltf model animations
- unsigned int animsCount = 0;
+ int animsCount = 0;
unsigned int animIndex = 0;
unsigned int animCurrentFrame = 0;
ModelAnimation *modelAnimations = LoadModelAnimations("resources/models/gltf/robot.glb", &animsCount);