Remove trailing spaces

This commit is contained in:
Ray
2023-06-17 16:48:18 +02:00
parent 2209e5b0ca
commit 830e328df0
5 changed files with 11 additions and 11 deletions

View File

@@ -5379,7 +5379,7 @@ static ModelAnimation *LoadModelAnimationsGLTF(const char *fileName, unsigned in
strncpy(animations[i].name, animData.name, sizeof(animations[i].name));
animations[i].name[sizeof(animations[i].name) - 1] = '\0';
animations[i].frameCount = (int)(animDuration*1000.0f/GLTF_ANIMDELAY);
animations[i].framePoses = RL_MALLOC(animations[i].frameCount*sizeof(Transform *));