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

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Tue Jan 25 14:00:38 CET 2011


Revision: 55530
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55530&view=rev
Author:   drmccoy
Date:     2011-01-25 13:00:38 +0000 (Tue, 25 Jan 2011)

Log Message:
-----------
GOB: Add a workaround for taking the music sheet from Dr. Dramish's car

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

Modified: scummvm/trunk/engines/gob/inter_v6.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v6.cpp	2011-01-25 12:14:31 UTC (rev 55529)
+++ scummvm/trunk/engines/gob/inter_v6.cpp	2011-01-25 13:00:38 UTC (rev 55530)
@@ -124,6 +124,13 @@
 			props.x, props.y, props.startFrame, props.lastFrame,
 			props.palCmd, props.palStart, props.palEnd, props.flags);
 
+	// WORKAROUND: When taking the music sheet from Dr. Dramish's car,
+	//             the video that lets the sheet vanish is missing. We'll
+	//             play the one where the sheet is already gone instead.
+	if (!strcmp(fileName, "MXRAMPART") &&
+	    !scumm_stricmp(_vm->_game->_curTotFile, "EMAM2013.TOT"))
+		strcpy(fileName, "PLCOFDR2");
+
 	if (!strcmp(fileName, "RIEN")) {
 		_vm->_vidPlayer->closeAll();
 		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