mirror of
https://github.com/yawut/SDL.git
synced 2026-07-02 00:13:39 -05:00
Fixed signed/unsigned warning
This commit is contained in:
parent
3fa3f6d0d7
commit
bd0a96eff2
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user