mirror of https://github.com/encounter/SDL.git
Fixed compiler warning on Visual Studio
This commit is contained in:
parent
d8dba5bcf3
commit
268fbcd460
|
@ -411,9 +411,9 @@ SDL_LoadBMP_RW(SDL_RWops * src, int freesrc)
|
||||||
biClrUsed = 1 << biBitCount;
|
biClrUsed = 1 << biBitCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (biClrUsed > palette->ncolors) {
|
if (biClrUsed > (Uint32)palette->ncolors) {
|
||||||
biClrUsed = 1 << biBitCount; /* try forcing it? */
|
biClrUsed = 1 << biBitCount; /* try forcing it? */
|
||||||
if (biClrUsed > palette->ncolors) {
|
if (biClrUsed > (Uint32)palette->ncolors) {
|
||||||
SDL_SetError("Unsupported or incorrect biClrUsed field");
|
SDL_SetError("Unsupported or incorrect biClrUsed field");
|
||||||
was_error = SDL_TRUE;
|
was_error = SDL_TRUE;
|
||||||
goto done;
|
goto done;
|
||||||
|
|
Loading…
Reference in New Issue