From a35cf6cb93bf3b7ce4ab78ee85a00ac2186e688b Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 13 Jul 2019 14:48:22 +0200 Subject: HDB: Added SetDebug/GetDebug, no relevant functionality --- engines/hdb/hdb.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'engines/hdb/hdb.h') 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]; -- cgit v1.2.3