aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/detection.cpp')
-rw-r--r--engines/hdb/detection.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/engines/hdb/detection.cpp b/engines/hdb/detection.cpp
index 84d103d2d4..744d4304be 100644
--- a/engines/hdb/detection.cpp
+++ b/engines/hdb/detection.cpp
@@ -34,13 +34,8 @@ const char *HDBGame::getGameFile() const {
return _gameDescription->filesDescriptions[0].fileName;
}
-void HDBGame::setGameFlags() {
- _voiceless = false;
- if (_gameDescription->flags & ADGF_DEMO) {
- _isDemo = true;
- return;
- }
- _isDemo = false;
+uint32 HDBGame::getGameFlags() const {
+ return _gameDescription->flags;
}
} // End of namespace HDB