From d0411f68f4afa820cdc64e2d94108816849d1839 Mon Sep 17 00:00:00 2001 From: Daniel Holden Date: Thu, 19 Sep 2024 07:52:46 -0400 Subject: [PATCH] Removed variable declaration to avoid shadowing warning. --- src/rmodels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rmodels.c b/src/rmodels.c index ea2e0db4b..055fb1b1c 100644 --- a/src/rmodels.c +++ b/src/rmodels.c @@ -6670,7 +6670,7 @@ static Model LoadM3D(const char *fileName) model.meshes[i].boneCount = model.boneCount; model.meshes[i].boneMatrices = RL_CALLOC(model.meshes[i].boneCount, sizeof(Matrix)); - for (int j = 0; j < model.meshes[i].boneCount; j++) + for (j = 0; j < model.meshes[i].boneCount; j++) { model.meshes[i].boneMatrices[j] = MatrixIdentity(); }