Gob3 CD - some texts are skipped in the CD version because they are considered as subtitles. Even if this behavior is also found in the original, it's incorrect. This fixes those texts (see newspaper after death level).

svn-id: r48166
This commit is contained in:
Arnaud Boutonné 2010-03-06 00:35:27 +00:00
parent 5cf998eab3
commit e869b5c7e6

View File

@ -221,7 +221,7 @@ void Draw_v2::printTotText(int16 id) {
bool isSubtitle = (ptr[1] & 0x80) != 0;
if (isSubtitle && !_vm->_global->_doSubtitles) {
if (isSubtitle && !_vm->_global->_doSubtitles && ((_vm->getGameType() != kGameTypeGob3) || !_vm->isCD())) {
delete textItem;
return;
}