Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed signed/unsigned warning
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/video/SDL_bmp.c
|
@@ -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); |
|
|