mirror of
https://github.com/libretro/scummvm.git
synced 2025-05-13 09:36:21 +00:00
Fix regression that caused subtitles to always be shown in loomcd
svn-id: r9888
This commit is contained in:
parent
6071e79dce
commit
906c7818ec
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user