Skip to content

Commit

Permalink
Fixed signed/unsigned warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 9, 2013
1 parent e77932c commit 6250914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IMG_bmp.c
Expand Up @@ -296,7 +296,7 @@ static SDL_Surface *LoadBMP_RW (SDL_RWops *src, int freesrc)
biClrUsed = 0;
biClrImportant = 0;
} else {
const int headerSize = 40;
const unsigned int headerSize = 40;

biWidth = SDL_ReadLE32(src);
biHeight = SDL_ReadLE32(src);
Expand Down

0 comments on commit 6250914

Please sign in to comment.