From e97b91161cf2ab408cbe0fb6aeb4d994070fe916 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Thu, 5 Jun 2003 13:47:07 +0000 Subject: Adjust default _subtitle values svn-id: r8326 --- simon/simon.cpp | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/simon/simon.cpp b/simon/simon.cpp index f1cd46a605..af7ceeadf3 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4393,13 +4393,19 @@ void SimonEngine::go() { if (_debugLevel == 4) _start_mainscript = true; - if (_game & GF_TALKIE) - if (_noSubtitles) + if (_game & GF_TALKIE) { + // Always default to voice only on Simon the Sorcerer 2 + if (_game & GF_SIMON2) { _subtitles = false; - - // English and German versions of Simon the Sorcerer 1 don't have full subtitles - if (!(_game & GF_SIMON2) && _language < 2) - _subtitles = false; + // English and German versions of Simon the Sorcerer 1 don't have full subtitles + } else if (_language < 2) { + _subtitles = false; + // Allow choose in other versions of Simon the Sorcerer 1 + } else { + if (_noSubtitles) + _subtitles = false; + } + } if (_language == 4 || (_language > 5 && _language < 20)) error("The only known versions are English, French, German, Hebrew, Italian and Spanish"); -- cgit v1.2.3