Added default destructors as required by the Symbian/Epoc port

svn-id: r18431
This commit is contained in:
Lars Persson 2005-06-21 22:19:02 +00:00
parent 1c69696a9a
commit 9cdfe927be
2 changed files with 3 additions and 0 deletions

View File

@ -106,6 +106,8 @@ ScummDebugger::ScummDebugger(ScummEngine *s)
DCmd_Register("imuse", &ScummDebugger::Cmd_IMuse);
}
ScummDebugger::~ScummDebugger() {} // we need this here for __SYMBIAN32__
void ScummDebugger::preEnter() {
// Pause sound output
_old_soundsPaused = _vm->_sound->_soundsPaused;

View File

@ -30,6 +30,7 @@ class ScummEngine;
class ScummDebugger : public Common::Debugger<ScummDebugger> {
public:
ScummDebugger(ScummEngine *s);
virtual ~ScummDebugger(); // we need this here for __SYMBIAN32__
protected:
ScummEngine *_vm;