Switch the galaxy from a 8-bit png file to an 8-bit bmp file. Fixes #867 and possibly #854

master
Phil Howlett 2011-12-19 22:08:33 +10:00
parent 8aa499a09c
commit 66bd1e8a79
3 changed files with 2 additions and 2 deletions

BIN
data/galaxy.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -14,9 +14,9 @@ static SDL_Surface *s_galaxybmp;
void Init()
{
s_galaxybmp = IMG_Load(PIONEER_DATA_DIR"/galaxy.png");
s_galaxybmp = SDL_LoadBMP(PIONEER_DATA_DIR"/galaxy.bmp");
if (!s_galaxybmp) {
Error("IMG_Load: %s\n", IMG_GetError());
Error("SDL_LoadBMP: %s\n", IMG_GetError());
Pi::Quit();
}
}