svn-id: r6148
This commit is contained in:
Max Horn
2002-12-25 21:14:26 +00:00
parent fca9ec09e7
commit d808e4da1f
3 changed files with 23 additions and 24 deletions
+4 -4
View File
@@ -242,13 +242,13 @@ void Scumm::CHARSET_1()
if (c != 0xFF) {
_charset->_left = _charset->_nextLeft;
_charset->_top = _charset->_nextTop;
if (_features & GF_OLD256)
if (_features & GF_OLD256) {
_charset->printCharOld(c);
else if (!(_features & GF_AFTER_V6)) {
if (!(_haveMsg == 0xFE && _noSubtitles))
} else if (_features & GF_AFTER_V6) {
if (!_noSubtitles || (_haveMsg != 0xFE && _haveMsg != 0xFF))
_charset->printChar(c);
} else {
if (!((_haveMsg == 0xFE || _haveMsg == 0xFF) && _noSubtitles))
if (!_noSubtitles || _haveMsg != 0xFE)
_charset->printChar(c);
}