X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsupertux.cpp;h=46efc59ee861084bb1e8c5fe670377cc994c40e6;hb=ad4cc7039db0c05354df820cbd62f5ca7e651193;hp=77ea138fe1a01324a64fb0351063ed3a187fd409;hpb=6f801c22d97251799740317fb1d0caf2e744b321;p=supertux.git diff --git a/src/supertux.cpp b/src/supertux.cpp index 77ea138fe..46efc59ee 100644 --- a/src/supertux.cpp +++ b/src/supertux.cpp @@ -25,11 +25,8 @@ #include #include -#include "utils/exceptions.h" -#include "defines.h" #include "app/globals.h" #include "app/setup.h" -#include "intro.h" #include "title.h" #include "gameloop.h" #include "leveleditor.h" @@ -54,7 +51,7 @@ int main(int argc, char * argv[]) Setup::parseargs(argc, argv); Setup::audio(); - Setup::video(800, 600); + Setup::video(screen_width, screen_height); Setup::joystick(); Setup::general(); st_menu(); @@ -94,14 +91,11 @@ int main(int argc, char * argv[]) unloadshared(); Setup::general_free(); st_menu_free(); - TileManager::destroy_instance(); #ifdef DEBUG Surface::debug_check(); #endif Termination::shutdown(); #ifndef DEBUG // we want to see the backtrace in gdb when in debug mode - } catch (SuperTuxException &e) { - std::cerr << "Unhandled SuperTux exception:\n " << e.what_file() << ":" << e.what_line() << ": " << e.what() << std::endl; } catch (std::exception &e) { std:: cerr << "Unhandled exception: " << e.what() << std::endl; }