aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorLars Persson2005-06-21 22:19:02 +0000
committerLars Persson2005-06-21 22:19:02 +0000
commit9cdfe927be66e741bb95d5a5c2814cb142204335 (patch)
treec74ee596b2abdd3a087933a97e0e2346b4d4b635 /scumm
parent1c69696a9a8878971c4fa925b074498dab757857 (diff)
downloadscummvm-rg350-9cdfe927be66e741bb95d5a5c2814cb142204335.tar.gz
scummvm-rg350-9cdfe927be66e741bb95d5a5c2814cb142204335.tar.bz2
scummvm-rg350-9cdfe927be66e741bb95d5a5c2814cb142204335.zip
Added default destructors as required by the Symbian/Epoc port
svn-id: r18431
Diffstat (limited to 'scumm')
-rw-r--r--scumm/debugger.cpp2
-rw-r--r--scumm/debugger.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp
index 7f3c0aabb1..fac53e82e2 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -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;
diff --git a/scumm/debugger.h b/scumm/debugger.h
index 0a65e0fea4..3402667936 100644
--- a/scumm/debugger.h
+++ b/scumm/debugger.h
@@ -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;