termination bug

Ask for help regarding any technical issue or report any bug or OS independent issues.
Locked
MasterX
Peon
Peon
Posts: 4
Joined: 20 Jun 2005, 19:10

termination bug

Post by MasterX »

game termination bug:
hit a side button on my mouse and my game closed and got this message:

Code: Select all

terminate called after throwing an instance of 'gcn::Exception'
Aborted
User avatar
Bjørn
Manasource
Manasource
Posts: 1438
Joined: 09 Dec 2004, 18:50
Location: North Rhine-Westphalia, Germany
Contact:

Post by Bjørn »

Hmm, not that useful unless we manage to reproduce it. If you can, try to make a backtrace after running the game in gdb. On Linux, that'd mean:

Code: Select all

./configure --prefix=<...> CXXFLAGS="-g"
make clean
make
make install
gdb src/tmw
> run
[crash]
> bt
Locked