aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/detection.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-09-04 22:36:03 -0700
committerPaul Gilbert2019-09-25 20:13:26 -0700
commit7fe81a7f2fd2be606626bc2dd1f31c1df6ca6163 (patch)
treecad49b3b99cf77b79879ce789893696a32680a6c /engines/glk/detection.cpp
parent146199f29bc5e2b278e3d02c906922aaa68870b3 (diff)
downloadscummvm-rg350-7fe81a7f2fd2be606626bc2dd1f31c1df6ca6163.tar.gz
scummvm-rg350-7fe81a7f2fd2be606626bc2dd1f31c1df6ca6163.tar.bz2
scummvm-rg350-7fe81a7f2fd2be606626bc2dd1f31c1df6ca6163.zip
GLK: ADRIFT: Added Italian detection
Diffstat (limited to 'engines/glk/detection.cpp')
-rw-r--r--engines/glk/detection.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/glk/detection.cpp b/engines/glk/detection.cpp
index 0345e8fcc7..cce1ec1ef0 100644
--- a/engines/glk/detection.cpp
+++ b/engines/glk/detection.cpp
@@ -70,6 +70,13 @@ GlkDetectedGame::GlkDetectedGame(const char *id, const char *desc, const Common:
addExtraEntry("filename", filename);
}
+GlkDetectedGame::GlkDetectedGame(const char *id, const char *desc, const char *extra,
+ const Common::String &filename, Common::Language lang) :
+ DetectedGame(id, desc, lang, Common::kPlatformUnknown, extra) {
+ setGUIOptions(GUIO3(GUIO_NOSPEECH, GUIO_NOMUSIC, GUIO_NOSUBTITLES));
+ addExtraEntry("filename", filename);
+}
+
GlkDetectedGame::GlkDetectedGame(const char *id, const char *desc, const Common::String &filename,
const Common::String &md5, size_t filesize) :
DetectedGame(id, desc, Common::UNK_LANG, Common::kPlatformUnknown) {