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

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Tue Oct 5 20:54:30 CEST 2010


Revision: 53032
          http://scummvm.svn.sourceforge.net/scummvm/?rev=53032&view=rev
Author:   drmccoy
Date:     2010-10-05 18:54:30 +0000 (Tue, 05 Oct 2010)

Log Message:
-----------
GOB: Fix text display in Gob3 Windows/ADI

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

Modified: scummvm/trunk/engines/gob/init_v3.cpp
===================================================================
--- scummvm/trunk/engines/gob/init_v3.cpp	2010-10-05 16:22:55 UTC (rev 53031)
+++ scummvm/trunk/engines/gob/init_v3.cpp	2010-10-05 18:54:30 UTC (rev 53032)
@@ -39,10 +39,11 @@
 }
 
 void Init_v3::updateConfig() {
-// In the CD version of Goblins3, some texts are flagged 'subtitles'
-// incorrectly and therefore should be displayed in all cases.
+// In the CD and Windows version of Goblins3, some texts are flagged
+// 'subtitles' incorrectly and therefore should be displayed in all cases.
 // The first obvious example is just after Death level.
-	if ((_vm->getGameType() == kGameTypeGob3) && _vm->isCD())
+	if ((_vm->getGameType() == kGameTypeGob3) &&
+			(_vm->isCD() || (_vm->getPlatform() == Common::kPlatformWindows)))
 		_vm->_global->_doSubtitles = true;
 }
 


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