[Scummvm-cvs-logs] SF.net SVN: scummvm:[44187] scummvm/trunk/engines/sword2/animation.cpp

joostp at users.sourceforge.net joostp at users.sourceforge.net
Fri Sep 18 18:39:14 CEST 2009


Revision: 44187
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44187&view=rev
Author:   joostp
Date:     2009-09-18 16:39:14 +0000 (Fri, 18 Sep 2009)

Log Message:
-----------
SWORD2: Don't show a pop-up if the 'eye' movie is missing - it was omitted in later re-releases.

Modified Paths:
--------------
    scummvm/trunk/engines/sword2/animation.cpp

Modified: scummvm/trunk/engines/sword2/animation.cpp
===================================================================
--- scummvm/trunk/engines/sword2/animation.cpp	2009-09-18 15:54:39 UTC (rev 44186)
+++ scummvm/trunk/engines/sword2/animation.cpp	2009-09-18 16:39:14 UTC (rev 44187)
@@ -337,9 +337,9 @@
 		return NULL;
 	}
 
-	// The demo tries to play some cutscenes that aren't there, so make
-	// those warnings more discreet.
-	if (!vm->_logic->readVar(DEMO)) {
+	// The demo tries to play some cutscenes that aren't there, so make those warnings more discreet.
+	// In addition, some of the later re-releases of the game don't have the "eye" Virgin logo movie.
+	if (!vm->_logic->readVar(DEMO) && strcmp(name, "eye") != 0) {
 		sprintf(buf, "Cutscene '%s' not found", name);
 		GUI::MessageDialog dialog(buf, "OK");
 		dialog.runModal();


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