mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-12 17:35:38 +00:00
Make SDL_LoadBMP() use true instead of 1
This commit is contained in:
parent
f212cb5f92
commit
edb28e79b5
1 changed files with 1 additions and 1 deletions
|
|
@ -593,7 +593,7 @@ SDL_Surface *SDL_LoadBMP(const char *file)
|
|||
if (!stream) {
|
||||
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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue