[Super-tux-commit] supertux/src title.cpp,1.11,1.12
Brought to you by:
wkendrick
From: Tobias Gl??er <to...@us...> - 2004-03-26 21:50:47
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1264/src Modified Files: title.cpp Log Message: quick fix for bug introduced by the last commit Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- title.cpp 26 Mar 2004 21:24:03 -0000 1.11 +++ title.cpp 26 Mar 2004 21:39:45 -0000 1.12 @@ -39,6 +39,9 @@ #include "player.h" #include "math.h" +void loadshared(void); +void activate_particle_systems(void); + static texture_type bkg_title, img_choose_subset, anim1, anim2; static SDL_Event event; static SDLKey key; @@ -66,8 +69,6 @@ texture_draw(&anim2, 560, 270); } -void loadshared(void); -void activate_particle_systems(void); /* --- TITLE SCREEN --- */ int title(void) @@ -332,7 +333,6 @@ } /* Free surfaces: */ - level_free(¤t_level); texture_free(&bkg_title); texture_free(&anim1); texture_free(&anim2); |