diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-08 18:51:13 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-08 18:51:13 +0100 |
commit | c6f994c51f29770be493ac3aaf76f71fccc4269f (patch) | |
tree | f791d2ba9867eb9752a654aa9a20ec61a66c30e7 | |
parent | 27163e11f31ef3b0c2bc97a09da5b7671d29f06a (diff) |
add new pointers to screen and background
make the old ones (Pfondjeu and Pecran) deprecated but keep them so the
code continues working properly.
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | structures.h | 8 |
2 files changed, 7 insertions, 3 deletions
@@ -24,7 +24,7 @@ int main (int argc, char *argv[]) fprintf(stderr, "Erreur lors de l'ouverture de la SDL : %s", SDL_GetError()); exit (EXIT_FAILURE); } - surfaces.Pecran = SDL_SetVideoMode (XWIN,YWIN,32, SDL_HWSURFACE|SDL_DOUBLEBUF); + surfaces.screen = surfaces.Pecran = SDL_SetVideoMode (XWIN,YWIN,32, SDL_HWSURFACE|SDL_DOUBLEBUF); if (surfaces.Pecran == NULL) { fprintf(stderr,"Impossible de charger la mémoire vidéo : %s", SDL_GetError()); diff --git a/structures.h b/structures.h index fa7e5c0..f3cb306 100644 --- a/structures.h +++ b/structures.h @@ -6,7 +6,8 @@ typedef struct surfaces SURFACES; struct surfaces { - SDL_Surface *Pecran; + SDL_Surface *Pecran; /* deprecated */ + SDL_Surface *screen; SDL_Surface *Pgobelin; SDL_Surface *red_warrior_gobelin; @@ -36,7 +37,10 @@ struct surfaces SDL_Surface *Ptextechoixmenu; SDL_Surface *Pcurseurennemis; SDL_Surface *Pcurseurallies; - SDL_Surface *Pfondjeu; + + SDL_Surface *Pfondjeu; /* deprecated */ + SDL_Surface *background; + SDL_Surface *Pnbdegats; SDL_Surface *Pcadrecible; SDL_Surface *Pnomcible; |