Check if voice file exists in simon2

svn-id: r9040
This commit is contained in:
Travis Howell 2003-07-15 16:51:06 +00:00
parent 2b7227679a
commit 60e5e16ae6

View file

@ -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;