Fix regression that caused subtitles to always be shown in loomcd

svn-id: r9888
This commit is contained in:
Travis Howell 2003-08-28 10:00:49 +00:00
parent 6071e79dce
commit 906c7818ec

View File

@ -310,7 +310,7 @@ void Scumm::CHARSET_1() {
if (_version <= 3) {
_charset->printChar(c);
} else {
if (_noSubtitles && (_haveMsg == 0xFE || _sound->_talkChannelHandle)) {
if (_noSubtitles && (_haveMsg == 0xFE || _sound->_talkChannelHandle >= 0)) {
// Subtitles are turned off, and there is a voice version
// of this message -> don't print it.
} else