aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/hdb.h')
-rw-r--r--engines/hdb/hdb.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h
index b7f12a354c..549eed3b02 100644
--- a/engines/hdb/hdb.h
+++ b/engines/hdb/hdb.h
@@ -222,6 +222,7 @@ public:
void togglePause() {
_pauseFlag ^= 1;
}
+
int getPause() {
return _pauseFlag;
}
@@ -246,9 +247,12 @@ public:
return &_targetName;
}
+ int getDebug() { return _debugFlag; }
+ void setDebug(int flag) { _debugFlag = flag; }
+
bool isVoiceless() {
/*
- FIXME: Add hyperspace-nv.mpc to gameDescriptions[]
+ FIXME: Add hyperspace-nv.mpc to gameDescriptions[]
in detection.cpp, and add a flag check for it.
Until then, the voiceless version is unsupported.
*/
@@ -311,6 +315,7 @@ private:
// Misc Variables
int _pauseFlag;
bool _cheating;
+ int _debugFlag;
char _currentMapname[64];
char _lastMapname[64];