aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/detection.cpp
diff options
context:
space:
mode:
authorHenrik "Henke37" Andersson2019-09-26 01:36:39 +0200
committerFilippos Karapetis2019-09-29 19:34:16 +0300
commit94a92e9fe2c3dbc7c1173734134a316d9bb5e724 (patch)
treeea1a8d22feaf502d7e483b9a3fe39bf51669294a /engines/sludge/detection.cpp
parent61e7069169a73c2a7edc12a9735ccca281e2fc83 (diff)
downloadscummvm-rg350-94a92e9fe2c3dbc7c1173734134a316d9bb5e724.tar.gz
scummvm-rg350-94a92e9fe2c3dbc7c1173734134a316d9bb5e724.tar.bz2
scummvm-rg350-94a92e9fe2c3dbc7c1173734134a316d9bb5e724.zip
SLUDGE: The engine does not support midi, mark detected games as such.
Diffstat (limited to 'engines/sludge/detection.cpp')
-rw-r--r--engines/sludge/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/detection.cpp b/engines/sludge/detection.cpp
index 020410d225..876614ead0 100644
--- a/engines/sludge/detection.cpp
+++ b/engines/sludge/detection.cpp
@@ -69,7 +69,7 @@ static Sludge::SludgeGameDescription s_fallbackDesc =
Common::UNK_LANG,
Common::kPlatformWindows,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
0
};
@@ -110,7 +110,7 @@ ADDetectedGame SludgeMetaEngine::fallbackDetect(const FileMap &allFiles, const C
s_fallbackDesc.desc.language = Common::EN_ANY;
s_fallbackDesc.desc.flags = ADGF_UNSTABLE;
s_fallbackDesc.desc.platform = Common::kPlatformUnknown;
- s_fallbackDesc.desc.guiOptions = GUIO0();
+ s_fallbackDesc.desc.guiOptions = GUIO1(GUIO_NOMIDI);
s_fallbackDesc.languageID = 0;
for (Common::FSList::const_iterator file = fslist.begin(); file != fslist.end(); ++file) {