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 976c876 commit 550676d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_bmp.c
Expand Up @@ -150,7 +150,7 @@ SDL_LoadBMP_RW(SDL_RWops * src, int freesrc)
biBitCount = SDL_ReadLE16(src);
biCompression = BI_RGB;
} else {
const int headerSize = 40;
const unsigned int headerSize = 40;

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

0 comments on commit 550676d

Please sign in to comment.