aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/detection.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-07-06 10:25:28 -0700
committerPaul Gilbert2019-07-06 15:27:10 -0700
commit5dda48c1c785b8a477785ee6040db82b904858bb (patch)
tree258a1650bfa5f51402530ddca822e03f1b984ff7 /engines/glk/detection.cpp
parent0502ac4bb1b41b17664adf46a2c3600553023c84 (diff)
downloadscummvm-rg350-5dda48c1c785b8a477785ee6040db82b904858bb.tar.gz
scummvm-rg350-5dda48c1c785b8a477785ee6040db82b904858bb.tar.bz2
scummvm-rg350-5dda48c1c785b8a477785ee6040db82b904858bb.zip
GLK: Change other sub-engines to use GlkDetectedGame
Diffstat (limited to 'engines/glk/detection.cpp')
-rw-r--r--engines/glk/detection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/glk/detection.cpp b/engines/glk/detection.cpp
index 43f1291b0d..7c6de28456 100644
--- a/engines/glk/detection.cpp
+++ b/engines/glk/detection.cpp
@@ -58,20 +58,20 @@ namespace Glk {
GlkDetectedGame::GlkDetectedGame(const char *gameId, const char *gameDesc, const Common::String &filename) :
DetectedGame(gameId, gameDesc, Common::EN_ANY, Common::kPlatformUnknown) {
- setGUIOptions(GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI));
+ setGUIOptions(GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES));
addExtraEntry("filename", filename);
}
GlkDetectedGame::GlkDetectedGame(const char *gameId, const char *gameDesc, const Common::String &filename,
Common::Language lang) : DetectedGame(gameId, gameDesc, lang, Common::kPlatformUnknown) {
- setGUIOptions(GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI));
+ setGUIOptions(GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES));
addExtraEntry("filename", filename);
}
GlkDetectedGame::GlkDetectedGame(const char *gameId, const char *gameDesc, const Common::String &filename,
const Common::String &md5, size_t filesize) :
DetectedGame(gameId, gameDesc, Common::UNK_LANG, Common::kPlatformUnknown) {
- setGUIOptions(GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI));
+ setGUIOptions(GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES));
addExtraEntry("filename", filename);
canBeAdded = true;