mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Review formating and signegness issues
This commit is contained in:
@ -235,7 +235,7 @@ Image LoadImage(const char *fileName)
|
||||
#if defined(STBI_REQUIRED)
|
||||
// NOTE: Using stb_image to load images (Supports multiple image formats)
|
||||
|
||||
int dataSize = 0;
|
||||
unsigned int dataSize = 0;
|
||||
unsigned char *fileData = LoadFileData(fileName, &dataSize);
|
||||
|
||||
if (fileData != NULL)
|
||||
@ -354,7 +354,7 @@ Image LoadImageRaw(const char *fileName, int width, int height, int format, int
|
||||
{
|
||||
Image image = { 0 };
|
||||
|
||||
int dataSize = 0;
|
||||
unsigned int dataSize = 0;
|
||||
unsigned char *fileData = LoadFileData(fileName, &dataSize);
|
||||
|
||||
if (fileData != NULL)
|
||||
@ -3059,7 +3059,7 @@ static Image LoadAnimatedGIF(const char *fileName, int *frames, int **delays)
|
||||
{
|
||||
Image image = { 0 };
|
||||
|
||||
int dataSize = 0;
|
||||
unsigned int dataSize = 0;
|
||||
unsigned char *fileData = LoadFileData(fileName, &dataSize);
|
||||
|
||||
if (fileData != NULL)
|
||||
|
||||
Reference in New Issue
Block a user