Attempt at fixing BeOS build that I broke in r345 -> Issue 61.

Completed bugfinders list.


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@362 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2008-11-25 19:55:06 +00:00
parent 8ce30de525
commit 7ba57b206e
3 changed files with 13 additions and 6 deletions

3
main.c
View File

@@ -334,8 +334,9 @@ void Initialisation_du_programme(int argc,char * argv[])
{
// Routine pour définir l'icone.
char Chemin_icone[256];
SDL_Surface * Icone;
sprintf(Chemin_icone, "%s%s", Repertoire_du_programme, "gfx2.gif");
SDL_Surface * Icone = IMG_Load(Chemin_icone);
Icone = IMG_Load(Chemin_icone);
if (Icone)
{
byte *Masque_icone;