mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 16:33:50 +00:00
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:
parent
5cf998eab3
commit
e869b5c7e6
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user