X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsupertux.cpp;h=79638a03701c702e7fb316284450a4d114216e36;hb=628bd2257f2a318846c9dfc399575a533498dd6c;hp=d43ca9eb221a80a5a6f5eb0af38eefa20f5fdf07;hpb=7bdfe568af536c2379a1c396524990e4463e5261;p=supertux.git diff --git a/src/supertux.cpp b/src/supertux.cpp index d43ca9eb2..79638a037 100644 --- a/src/supertux.cpp +++ b/src/supertux.cpp @@ -11,13 +11,11 @@ */ #include "supertux.h" - - -/* --- MAIN --- */ +#include "resources.h" int main(int argc, char * argv[]) { - int done; + bool done; st_directory_setup(); parseargs(argc, argv); @@ -27,6 +25,7 @@ int main(int argc, char * argv[]) st_joystick_setup(); st_general_setup(); st_menu(); + loadshared(); if (launch_worldmap_mode) { @@ -34,12 +33,12 @@ int main(int argc, char * argv[]) } else if (level_startup_file) { - gameloop(level_startup_file, 1, ST_GL_LOAD_LEVEL_FILE); + GameSession session(level_startup_file, 1, ST_GL_LOAD_LEVEL_FILE); + session.run(); } else { - done = 0; - + done = false; while (!done) { done = title(); @@ -49,7 +48,8 @@ int main(int argc, char * argv[]) clearscreen(0, 0, 0); updatescreen(); + unloadshared(); st_shutdown(); - return(0); + return 0; }