This commit is contained in:
acicchetti 2018-08-13 15:49:26 -04:00
parent 168e0882ed
commit 13e2ab6613
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@
#include <CoreServices/CoreServices.h>
#include <SDL2/SDL.h>
#include <SDL/SDL.h>
#include "wrogue.h"

View file

@ -619,7 +619,7 @@ static void background_init(void)
background_image = SDL_LoadBMP(data_path());
if (background_image == NULL) load_bmp_error();
Background = SDL_DisplayFormat(background_image);
Background = SDL_ConvertSurfaceFormat(background_image);
SDL_FreeSurface(background_image);
}