diff options
Diffstat (limited to 'engines/glk/detection.cpp')
| -rw-r--r-- | engines/glk/detection.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/engines/glk/detection.cpp b/engines/glk/detection.cpp index 7c6de28456..b19ecde62d 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(GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES)); +	setGUIOptions(GUIO3(GUIO_NOSPEECH, 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(GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES)); +	setGUIOptions(GUIO3(GUIO_NOSPEECH, 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(GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES)); +	setGUIOptions(GUIO3(GUIO_NOSPEECH, GUIO_NOMUSIC, GUIO_NOSUBTITLES));  	addExtraEntry("filename", filename);  	canBeAdded = true; | 
