From 628bd2257f2a318846c9dfc399575a533498dd6c Mon Sep 17 00:00:00 2001 From: Ingo Ruhnke Date: Sun, 11 Apr 2004 17:04:03 +0000 Subject: [PATCH] - moved loadshared() to the right point SVN-Revision: 483 --- src/supertux.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.11.0