浏览代码

Remove TABS

pull/1057/head
raysan5 5 年前
父节点
当前提交
c0d1425aac
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/textures.c

+ 2
- 2
src/textures.c 查看文件

@ -2988,9 +2988,9 @@ static Image LoadAnimatedGIF(const char *fileName, int *frames, int **delays)
{
fseek(gifFile, 0L, SEEK_END);
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);
fclose(gifFile); // Close file pointer

正在加载...
取消
保存