Fix LoadImageAnimFromMemory() warning for fileData

This commit is contained in:
ubkp 2023-12-28 17:59:58 -03:00
parent 3fc43c1096
commit c0185bb969

View File

@ -443,7 +443,7 @@ Image LoadImageAnim(const char *fileName, int *frames)
// - Number of frames is returned through 'frames' parameter
// - All frames are returned in RGBA format
// - Frames delay data is discarded
Image LoadImageAnimFromMemory(const char *fileType,const char *fileData, int dataSize,int *frames)
Image LoadImageAnimFromMemory(const char *fileType, const unsigned char *fileData, int dataSize,int *frames)
{
Image image = { 0 };
int frameCount = 0;