projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f9dfa1
)
forgot to remove exception block
author
Matthias Braun
<matze@braunis.de>
Mon, 29 Nov 2004 14:57:31 +0000
(14:57 +0000)
committer
Matthias Braun
<matze@braunis.de>
Mon, 29 Nov 2004 14:57:31 +0000
(14:57 +0000)
SVN-Revision: 2225
src/supertux.cpp
patch
|
blob
|
history
diff --git
a/src/supertux.cpp
b/src/supertux.cpp
index
dc771df
..
81856f6
100644
(file)
--- 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;
}