diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/draw_v2.cpp | 2 | ||||
-rw-r--r-- | engines/gob/init_v2.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/engines/gob/draw_v2.cpp b/engines/gob/draw_v2.cpp index 7efb414947..985f84aaef 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 && ((_vm->getGameType() != kGameTypeGob3) || !_vm->isCD())) { + if (isSubtitle && !_vm->_global->_doSubtitles) { delete textItem; return; } diff --git a/engines/gob/init_v2.cpp b/engines/gob/init_v2.cpp index f89d5a8cfb..a5287c8050 100644 --- a/engines/gob/init_v2.cpp +++ b/engines/gob/init_v2.cpp @@ -68,6 +68,8 @@ void Init_v2::initVideo() { if (_vm->_global->_videoMode != 0) _vm->_video->initSurfDesc(_vm->_global->_videoMode, _vm->_video->_surfWidth, _vm->_video->_surfHeight, PRIMARY_SURFACE); + if ((_vm->getGameType() == kGameTypeGob3) && _vm->isCD()) + _vm->_global->_doSubtitles = true; } } // End of namespace Gob |