Fix various warnings when building in VC2022 (#6020)

This commit is contained in:
Jeffery Myers
2026-07-26 06:10:19 -07:00
committed by GitHub
parent ac06acbaee
commit a18051fdd9
12 changed files with 47 additions and 47 deletions

View File

@@ -64,7 +64,7 @@ int main(void)
int boneSocketIndex[BONE_SOCKETS] = { -1, -1, -1 };
// Search bones for sockets
for (int i = 0; i < characterModel.skeleton.boneCount; i++)
for (unsigned int i = 0; i < characterModel.skeleton.boneCount; i++)
{
if (TextIsEqual(characterModel.skeleton.bones[i].name, "socket_hat"))
{