aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.h
diff options
context:
space:
mode:
authorNipun Garg2019-06-05 02:52:51 +0530
committerEugene Sandulenko2019-09-03 17:16:42 +0200
commit094bf4c06b4f9184b593e0f8f59c61fd1c577d8c (patch)
treec58314fbcc50de6686b9b744845a66756089ff42 /engines/hdb/hdb.h
parentbc638cf2511e3b9faaeb7f3f72ed1fb95f47b032 (diff)
downloadscummvm-rg350-094bf4c06b4f9184b593e0f8f59c61fd1c577d8c.tar.gz
scummvm-rg350-094bf4c06b4f9184b593e0f8f59c61fd1c577d8c.tar.bz2
scummvm-rg350-094bf4c06b4f9184b593e0f8f59c61fd1c577d8c.zip
HDB: Modify setGameFlags() to getGameFlags()
Diffstat (limited to 'engines/hdb/hdb.h')
-rw-r--r--engines/hdb/hdb.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h
index ccbbc80a15..e76510dd4b 100644
--- a/engines/hdb/hdb.h
+++ b/engines/hdb/hdb.h
@@ -47,6 +47,10 @@ struct ADGameDescription;
namespace HDB {
+enum GameFeatures {
+ ADGF_TALKIE = 1 << 0
+};
+
enum HDBDebugChannels {
kDebugExample1 = 1 << 0,
kDebugExample2 = 1 << 1
@@ -70,7 +74,7 @@ public:
const ADGameDescription *_gameDescription;
const char *getGameId() const;
const char *getGameFile() const;
- void setGameFlags();
+ uint32 getGameFlags() const;
Common::Platform getPlatform() const;
/*
@@ -96,8 +100,6 @@ private:
bool _systemInit;
GameState _gameState;
- bool _voiceless;
- bool _isDemo;
};