aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorLars Persson2005-06-21 22:08:21 +0000
committerLars Persson2005-06-21 22:08:21 +0000
commit1c69696a9a8878971c4fa925b074498dab757857 (patch)
treed8f4f2cfea1a3e01bb7f5f5c58fb812d8029ca96 /queen
parent4564f0d3bf0d40f5a2ca125df0682969adc8431c (diff)
downloadscummvm-rg350-1c69696a9a8878971c4fa925b074498dab757857.tar.gz
scummvm-rg350-1c69696a9a8878971c4fa925b074498dab757857.tar.bz2
scummvm-rg350-1c69696a9a8878971c4fa925b074498dab757857.zip
Patches needed to build for SYMBIAN32 WINS/GCC added.
Test built for Symbian and run on P910i without any major problems. Test built for MSVC6. Changed parts seems to compile ok but there are some problems with MSVC6 and some of the targets which the EPOC build does n't support (KYRA,SAGA). svn-id: r18430
Diffstat (limited to 'queen')
-rw-r--r--queen/debug.cpp1
-rw-r--r--queen/debug.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/queen/debug.cpp b/queen/debug.cpp
index 26840975ea..d01d941eda 100644
--- a/queen/debug.cpp
+++ b/queen/debug.cpp
@@ -51,6 +51,7 @@ Debugger::Debugger(QueenEngine *vm)
DCmd_Register("song", &Debugger::Cmd_Song);
}
+Debugger::~Debugger() {} // we need this here for __SYMBIAN32__
void Debugger::preEnter() {
}
diff --git a/queen/debug.h b/queen/debug.h
index fd61f3c5bf..f4ecbda9a0 100644
--- a/queen/debug.h
+++ b/queen/debug.h
@@ -32,6 +32,7 @@ class Debugger : public Common::Debugger<Debugger> {
public:
Debugger(QueenEngine *vm);
+ virtual ~Debugger(); // we need this here for __SYMBIAN32__ archaic gcc/UIQ
int flags() const { return _flags; }