From: Matthias Braun Date: Mon, 29 Nov 2004 14:57:31 +0000 (+0000) Subject: forgot to remove exception block X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=b24a48714da63cb13af210348611904b989fb572;p=supertux.git forgot to remove exception block SVN-Revision: 2225 --- diff --git a/src/supertux.cpp b/src/supertux.cpp index dc771dfb1..81856f6e6 100644 --- a/src/supertux.cpp +++ b/src/supertux.cpp @@ -98,8 +98,6 @@ int main(int argc, char * argv[]) #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; }