MSVC warnings (#5595)

This commit is contained in:
Jeffery Myers
2026-02-26 09:33:08 -08:00
committed by GitHub
parent 7a3cecc010
commit 72b206624f
13 changed files with 43 additions and 43 deletions

View File

@ -117,7 +117,7 @@ int main(void)
frameCounter++;
frameCounter %= (anims[0].keyframeCount);
UpdateModelAnimation(robot, anims[0], frameCounter);
UpdateModelAnimation(robot, anims[0], (float)frameCounter);
// Move light with arrow keys
const float cameraSpeed = 0.05f;