From: Tobias Gläßer Date: Fri, 26 Mar 2004 21:39:45 +0000 (+0000) Subject: quick fix for bug introduced by the last commit X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=8518cc9c2b96c65c28b39734665c7078c4dc9219;p=supertux.git quick fix for bug introduced by the last commit SVN-Revision: 376 --- diff --git a/src/title.cpp b/src/title.cpp index 04d52985d..467c22158 100644 --- a/src/title.cpp +++ b/src/title.cpp @@ -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 @@ void draw_background() texture_draw(&anim2, 560, 270); } -void loadshared(void); -void activate_particle_systems(void); /* --- TITLE SCREEN --- */ int title(void) @@ -332,7 +333,6 @@ int title(void) } /* Free surfaces: */ - level_free(¤t_level); texture_free(&bkg_title); texture_free(&anim1); texture_free(&anim2);