Fix regression that caused subtitles to always be shown in loomcd
svn-id: r9888
This commit is contained in:
parent
6071e79dce
commit
906c7818ec
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ void Scumm::CHARSET_1() {
|
||||||
if (_version <= 3) {
|
if (_version <= 3) {
|
||||||
_charset->printChar(c);
|
_charset->printChar(c);
|
||||||
} else {
|
} else {
|
||||||
if (_noSubtitles && (_haveMsg == 0xFE || _sound->_talkChannelHandle)) {
|
if (_noSubtitles && (_haveMsg == 0xFE || _sound->_talkChannelHandle >= 0)) {
|
||||||
// Subtitles are turned off, and there is a voice version
|
// Subtitles are turned off, and there is a voice version
|
||||||
// of this message -> don't print it.
|
// of this message -> don't print it.
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue