[Scummvm-cvs-logs] SF.net SVN: scummvm:[49112] scummvm/trunk/engines/groovie

jvprat at users.sourceforge.net jvprat at users.sourceforge.net
Thu May 20 02:10:54 CEST 2010


Revision: 49112
          http://scummvm.svn.sourceforge.net/scummvm/?rev=49112&view=rev
Author:   jvprat
Date:     2010-05-20 00:10:53 +0000 (Thu, 20 May 2010)

Log Message:
-----------
Groovie: Tweak a filename of the Mac version of T7G

Modified Paths:
--------------
    scummvm/trunk/engines/groovie/resource.cpp
    scummvm/trunk/engines/groovie/vdx.cpp

Modified: scummvm/trunk/engines/groovie/resource.cpp
===================================================================
--- scummvm/trunk/engines/groovie/resource.cpp	2010-05-20 00:09:01 UTC (rev 49111)
+++ scummvm/trunk/engines/groovie/resource.cpp	2010-05-20 00:10:53 UTC (rev 49112)
@@ -82,6 +82,10 @@
 		Common::String filename = t7g_gjds[i];
 		filename += ".gjd";
 
+		// Handle the special case of Mac's hdisk.gjd
+		if (_macResFork && i == 7)
+			filename = "T7GData";
+
 		// Append it to the list of GJD files
 		_gjds.push_back(filename);
 	}

Modified: scummvm/trunk/engines/groovie/vdx.cpp
===================================================================
--- scummvm/trunk/engines/groovie/vdx.cpp	2010-05-20 00:09:01 UTC (rev 49111)
+++ scummvm/trunk/engines/groovie/vdx.cpp	2010-05-20 00:10:53 UTC (rev 49112)
@@ -103,7 +103,7 @@
 	debugC(1, kGroovieDebugVideo | kGroovieDebugAll, "Groovie::VDX: Playing video");
 
 	if (_file->readUint16LE() != VDX_IDENT) {
-		error("Groovie::VDX: This does not appear to be a 7th guest vxd file");
+		error("Groovie::VDX: This does not appear to be a 7th guest VDX file");
 		return 0;
 	} else {
 		debugC(5, kGroovieDebugVideo | kGroovieDebugAll, "Groovie::VDX: VDX file identified correctly");


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