Update rmodels.c

This commit is contained in:
Ray 2023-09-22 11:58:24 +02:00
parent f27ea1f0c8
commit 83d82b6697
1 changed files with 2 additions and 2 deletions

View File

@ -5246,7 +5246,7 @@ static bool GetPoseAtTimeGLTF(cgltf_accessor *input, cgltf_accessor *output, flo
float tend = 0.0f; float tend = 0.0f;
int keyframe = 0; // Defaults to first pose int keyframe = 0; // Defaults to first pose
for (int i = 0; i < input->count - 1; i++) for (int i = 0; i < (int)input->count - 1; i++)
{ {
cgltf_bool r1 = cgltf_accessor_read_float(input, i, &tstart, 1); cgltf_bool r1 = cgltf_accessor_read_float(input, i, &tstart, 1);
if (!r1) return false; if (!r1) return false;
@ -5722,7 +5722,7 @@ static Model LoadM3D(const char *fileName)
int skinid = m3d->vertex[m3d->face[i].vertex[n]].skinid; int skinid = m3d->vertex[m3d->face[i].vertex[n]].skinid;
// Check if there is a skin for this mesh, should be, just failsafe // Check if there is a skin for this mesh, should be, just failsafe
if (skinid != M3D_UNDEF && skinid < (int)m3d->numskin) if ((skinid != M3D_UNDEF) && (skinid < (int)m3d->numskin))
{ {
for (j = 0; j < 4; j++) for (j = 0; j < 4; j++)
{ {