aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/queen/debug.h')
-rw-r--r--engines/queen/debug.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/queen/debug.h b/engines/queen/debug.h
index 1b2d7582b3..9b08ce83e8 100644
--- a/engines/queen/debug.h
+++ b/engines/queen/debug.h
@@ -34,7 +34,6 @@ class QueenEngine;
class Debugger : public GUI::Debugger {
public:
-
Debugger(QueenEngine *vm);
virtual ~Debugger(); // we need this here for __SYMBIAN32__ archaic gcc/UIQ
@@ -44,11 +43,11 @@ public:
DF_DRAW_AREAS = 1 << 0
};
-protected:
-
+private:
virtual void preEnter();
virtual void postEnter();
+private:
bool Cmd_Areas(int argc, const char **argv);
bool Cmd_Asm(int argc, const char **argv);
bool Cmd_Bob(int argc, const char **argv);
@@ -60,7 +59,6 @@ protected:
bool Cmd_Song(int argc, const char **argv);
private:
-
QueenEngine *_vm;
int _flags;
};