aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNipun Garg2019-07-11 02:24:35 +0530
committerEugene Sandulenko2019-09-03 17:17:17 +0200
commit9fcb307d1c6cfc4926d8f289ae886e75a22dc228 (patch)
tree5714f45494f575048724871a3ecdd736d7910b45
parent69e4668422e0e7f3e6887de49d63b8d1a65846a5 (diff)
downloadscummvm-rg350-9fcb307d1c6cfc4926d8f289ae886e75a22dc228.tar.gz
scummvm-rg350-9fcb307d1c6cfc4926d8f289ae886e75a22dc228.tar.bz2
scummvm-rg350-9fcb307d1c6cfc4926d8f289ae886e75a22dc228.zip
HDB: Add isVoiceless()
-rw-r--r--engines/hdb/hdb.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h
index 361ad09f10..4e0ea0d725 100644
--- a/engines/hdb/hdb.h
+++ b/engines/hdb/hdb.h
@@ -233,6 +233,15 @@ public:
return &_targetName;
}
+ bool isVoiceless() {
+ /*
+ FIXME: Add hyperspace-nv.mpc to gameDescriptions[]
+ in detection.cpp, and add a flag check for it.
+ Until then, the voiceless version is unsupported.
+ */
+ return false;
+ }
+
char *lastMapName() { return _lastMapname; }
char *currentMapName() { return _currentMapname; }
char *getInMapName() { return _inMapName; }