mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-17 07:16:00 +00:00
Make SDL_LoadBMP() use true instead of 1
This commit is contained in:

committed by
Sam Lantinga

parent
f212cb5f92
commit
edb28e79b5
@@ -593,7 +593,7 @@ SDL_Surface *SDL_LoadBMP(const char *file)
|
|||||||
if (!stream) {
|
if (!stream) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
return SDL_LoadBMP_IO(stream, 1);
|
return SDL_LoadBMP_IO(stream, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SDL_SaveBMP_IO(SDL_Surface *surface, SDL_IOStream *dst, bool closeio)
|
bool SDL_SaveBMP_IO(SDL_Surface *surface, SDL_IOStream *dst, bool closeio)
|
||||||
|
Reference in New Issue
Block a user