mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
remove old commented fixme, make turning off subtitles work in the scumm part of the dig, still needs to be done for smush
svn-id: r6053
This commit is contained in:
+1
-3
@@ -608,12 +608,10 @@ void Scumm::CHARSET_1()
|
||||
if (_features & GF_OLD256)
|
||||
charset.printCharOld(c);
|
||||
else if (!(_features & GF_AFTER_V6)) {
|
||||
// if (!_vars[VAR_V5_CHARFLAG]) { /* FIXME */
|
||||
if (!(_haveMsg == 0xFE && _noSubtitles))
|
||||
charset.printChar(c);
|
||||
// }
|
||||
} else {
|
||||
if (!(_haveMsg == 0xFE && _noSubtitles))
|
||||
if (!((_haveMsg == 0xFE || _haveMsg == 0xFF) && _noSubtitles))
|
||||
charset.printChar(c);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user