mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-31 03:09:17 -05:00
Remove TABS
This commit is contained in:
@ -2988,9 +2988,9 @@ static Image LoadAnimatedGIF(const char *fileName, int *frames, int **delays)
|
|||||||
{
|
{
|
||||||
fseek(gifFile, 0L, SEEK_END);
|
fseek(gifFile, 0L, SEEK_END);
|
||||||
int size = ftell(gifFile);
|
int size = ftell(gifFile);
|
||||||
fseek(gifFile, 0L, SEEK_SET);
|
fseek(gifFile, 0L, SEEK_SET);
|
||||||
|
|
||||||
unsigned char *buffer = (unsigned char *)RL_CALLOC(size, sizeof(char));
|
unsigned char *buffer = (unsigned char *)RL_CALLOC(size, sizeof(char));
|
||||||
fread(buffer, sizeof(char), size, gifFile);
|
fread(buffer, sizeof(char), size, gifFile);
|
||||||
|
|
||||||
fclose(gifFile); // Close file pointer
|
fclose(gifFile); // Close file pointer
|
||||||
|
|||||||
Reference in New Issue
Block a user