diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/draw_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/draw_v2.cpp b/engines/gob/draw_v2.cpp index 985f84aaef..7efb414947 100644 --- a/engines/gob/draw_v2.cpp +++ b/engines/gob/draw_v2.cpp @@ -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; } |