[Scummvm-cvs-logs] SF.net SVN: scummvm:[48166] scummvm/trunk/engines/gob/draw_v2.cpp

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Sat Mar 6 01:35:27 CET 2010


Revision: 48166
          http://scummvm.svn.sourceforge.net/scummvm/?rev=48166&view=rev
Author:   strangerke
Date:     2010-03-06 00:35:27 +0000 (Sat, 06 Mar 2010)

Log Message:
-----------
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).

Modified Paths:
--------------
    scummvm/trunk/engines/gob/draw_v2.cpp

Modified: scummvm/trunk/engines/gob/draw_v2.cpp
===================================================================
--- scummvm/trunk/engines/gob/draw_v2.cpp	2010-03-05 23:35:28 UTC (rev 48165)
+++ scummvm/trunk/engines/gob/draw_v2.cpp	2010-03-06 00:35:27 UTC (rev 48166)
@@ -221,7 +221,7 @@
 
 	bool isSubtitle = (ptr[1] & 0x80) != 0;
 
-	if (isSubtitle && !_vm->_global->_doSubtitles) {
+	if (isSubtitle && !_vm->_global->_doSubtitles && ((_vm->getGameType() != kGameTypeGob3) || !_vm->isCD())) {
 		delete textItem;
 		return;
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list