This commit is contained in:
Lior Halphon 2021-10-20 23:36:48 +03:00
commit 0e6b9da42d
1 changed files with 6 additions and 0 deletions

View File

@ -1160,6 +1160,12 @@ void run_gui(bool is_running)
static SDL_Surface *converted_background = NULL;
if (!converted_background) {
SDL_Surface *background = SDL_LoadBMP(resource_path("background.bmp"));
/* Create a blank background if background.bmp could not be loaded */
if (!background) {
background = SDL_CreateRGBSurface(0, 160, 144, 8, 0, 0, 0, 0);
}
SDL_SetPaletteColors(background->format->palette, gui_palette, 0, 4);
converted_background = SDL_ConvertSurface(background, pixel_format, 0);
SDL_LockSurface(converted_background);