Skip to content

Commit

Permalink
LoadModelAnimations argument type declaration fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gamecubate committed Jun 28, 2023
1 parent ba7617f commit 68ad740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ static Janet cfun_UnloadMesh(int32_t argc, Janet *argv) {
static Janet cfun_LoadModelAnimations(int32_t argc, Janet *argv) {
janet_fixarity(argc, 1);
const char *fileName = janet_getcstring(argv, 0);
int animCount;
unsigned int animCount;
ModelAnimation *anims = LoadModelAnimations(fileName, &animCount);
JanetArray *array = janet_array(animCount);
array->count = animCount;
Expand Down

0 comments on commit 68ad740

Please sign in to comment.