From: Ingo Ruhnke Date: Sun, 11 Apr 2004 17:04:03 +0000 (+0000) Subject: - moved loadshared() to the right point X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=628bd2257f2a318846c9dfc399575a533498dd6c;p=supertux.git - moved loadshared() to the right point SVN-Revision: 483 --- diff --git a/src/supertux.cpp b/src/supertux.cpp index b4da51170..79638a037 100644 --- a/src/supertux.cpp +++ b/src/supertux.cpp @@ -25,6 +25,7 @@ int main(int argc, char * argv[]) st_joystick_setup(); st_general_setup(); st_menu(); + loadshared(); if (launch_worldmap_mode) { @@ -40,15 +41,14 @@ int main(int argc, char * argv[]) done = false; while (!done) { - loadshared(); done = title(); - unloadshared(); } } clearscreen(0, 0, 0); updatescreen(); + unloadshared(); st_shutdown(); return 0;