Forums » Bugs
Vendetta will not quit
Instead of quiting when I hit the "Quit" button in-station, the application crashes.
Bug reports submitted.
Bug reports submitted.
It is a new "feature" so once you start you can't stop and the guys will have a never ending source of players <Muwah Wahha!> :)
there's a pure virtual function call somehow. I don't know why.
Um. As in you're calling a non-overrided virtual function?
Not on purpose. This is usually indicative of calling a member function of a deleted object (gcc's default destructor replaces the virtual table with pure_virtual)
Also happens if some dependencies are not seen by make and .h file is out of sync with what they object layout actually is. I run into that every once in a while and its every time very frustrating to debug. Remind me why the server is written in C++ again? ;-)
sarahanne: I'll take your explanation. :•)