Fixed signed/unsigned warning

main
Sam Lantinga 2013-11-09 00:56:05 -08:00
parent 976c876924
commit 550676d08d
1 changed files with 1 additions and 1 deletions

View File

@ -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);