[Scummvm-cvs-logs] SF.net SVN: scummvm:[55302] scummvm/trunk/engines/mohawk/myst.cpp
mthreepwood at users.sourceforge.net
mthreepwood at users.sourceforge.net
Tue Jan 18 18:03:22 CET 2011
Revision: 55302
http://scummvm.svn.sourceforge.net/scummvm/?rev=55302&view=rev
Author: mthreepwood
Date: 2011-01-18 17:03:21 +0000 (Tue, 18 Jan 2011)
Log Message:
-----------
MOHAWK: Fix the gear puzzle in Myst ME Mac
Modified Paths:
--------------
scummvm/trunk/engines/mohawk/myst.cpp
Modified: scummvm/trunk/engines/mohawk/myst.cpp
===================================================================
--- scummvm/trunk/engines/mohawk/myst.cpp 2011-01-18 16:18:10 UTC (rev 55301)
+++ scummvm/trunk/engines/mohawk/myst.cpp 2011-01-18 17:03:21 UTC (rev 55302)
@@ -206,7 +206,8 @@
Common::String MohawkEngine_Myst::wrapMovieFilename(const Common::String &movieName, uint16 stack) {
// The Macintosh release of Myst ME stores its videos in a different folder
- if ((getFeatures() & GF_ME) && getPlatform() == Common::kPlatformMacintosh)
+ // WORKAROUND: The gear rotation videos are not in the CD Data folder
+ if ((getFeatures() & GF_ME) && getPlatform() == Common::kPlatformMacintosh && !movieName.matchString("cl1wg?"))
return Common::String("CD Data/m/") + movieName + ".mov";
const char* prefix;
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