Fix typecast warnings in raylib code as reported by visual studio 2019 (#1443)

This commit is contained in:
Jeffery Myers
2020-11-29 23:14:11 -08:00
committed by GitHub
parent d43268b317
commit df249f5513
4 changed files with 35 additions and 35 deletions

View File

@@ -4461,7 +4461,7 @@ static void KeyCallback(GLFWwindow *window, int key, int scancode, int action, i
strcpy(path, TextFormat("./screenrec%03i.gif", screenshotCounter));
#endif
SaveFileData(path, result.data, result.dataSize);
SaveFileData(path, result.data, (unsigned int)result.dataSize);
msf_gif_free(result);
#if defined(PLATFORM_WEB)