aboutsummaryrefslogtreecommitdiff
path: root/sky/sky.h
diff options
context:
space:
mode:
authorJoost Peters2004-09-13 17:05:23 +0000
committerJoost Peters2004-09-13 17:05:23 +0000
commita57fcac59a47c406251e129e327487db90a14507 (patch)
tree866b515b54b1ffa8d32702867ab74a488d51625b /sky/sky.h
parent1f9e3739558405893eb62d6ac0a6d15d76abc2dc (diff)
downloadscummvm-rg350-a57fcac59a47c406251e129e327487db90a14507.tar.gz
scummvm-rg350-a57fcac59a47c406251e129e327487db90a14507.tar.bz2
scummvm-rg350-a57fcac59a47c406251e129e327487db90a14507.zip
Add debugger for BASS.
This should help in tracking down remaining bugs, such as the grid problems and walk deadlocks. svn-id: r15098
Diffstat (limited to 'sky/sky.h')
-rw-r--r--sky/sky.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sky/sky.h b/sky/sky.h
index ed3a28a207..0eee981dea 100644
--- a/sky/sky.h
+++ b/sky/sky.h
@@ -51,6 +51,7 @@ class Screen;
class Control;
class MusicBase;
class Intro;
+class Debugger;
class SkyEngine : public Engine {
void errorString(const char *buf_input, char *buf_output);
@@ -68,7 +69,8 @@ protected:
Mouse *_skyMouse;
Screen *_skyScreen;
Control *_skyControl;
-
+ Debugger *_debugger;
+
MusicBase *_skyMusic;
Intro *_skyIntro;