From 60e5e16ae6348a1dfab4f7fe1625900ed9ef283a Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Tue, 15 Jul 2003 16:51:06 +0000 Subject: [PATCH] Check if voice file exists in simon2 svn-id: r9040 --- simon/simon.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/simon/simon.cpp b/simon/simon.cpp index 0f4b44f8d32..7541faa0fc3 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4380,9 +4380,10 @@ void SimonEngine::go() { _start_mainscript = true; if (_game & GF_TALKIE) { - // Always default to voice only on Simon the Sorcerer 2 + // Check for speech file in Simon the Sorcerer 2 if (_game & GF_SIMON2) { - _subtitles = false; + if (_sound->hasVoice()) + _subtitles = false; // English and German versions of Simon the Sorcerer 1 don't have full subtitles } else if (_language < 2) { _subtitles = false;