Started making SDL2 migration via https://wiki.libsdl.org/MigrationGuide
This commit is contained in:
parent
168e0882ed
commit
13e2ab6613
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <CoreServices/CoreServices.h>
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include <SDL/SDL.h>
|
||||
|
||||
|
||||
#include "wrogue.h"
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue