[Scummvm-cvs-logs] scummvm master -> 9e1245c420c8cd4547eb0828c434856c97260c0b

bluegr md5 at scummvm.org
Sun Mar 13 22:52:03 CET 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
9e1245c420 SCI: Fixed version and scene transitions for SCI1 Mac games


Commit: 9e1245c420c8cd4547eb0828c434856c97260c0b
    https://github.com/scummvm/scummvm/commit/9e1245c420c8cd4547eb0828c434856c97260c0b
Author: md5 (md5 at scummvm.org)
Date: 2011-03-13T14:50:40-07:00

Commit Message:
SCI: Fixed version and scene transitions for SCI1 Mac games

Changed paths:
    engines/sci/resource.cpp



diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index 7a4534d..61df02a 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -2275,6 +2275,9 @@ void ResourceManager::detectSciVersion() {
 		// Amiga SCI1 middle games are actually SCI1 late
 		if (_viewType == kViewAmiga || _viewType == kViewAmiga64)
 			s_sciVersion = SCI_VERSION_1_LATE;
+		// Same goes for Mac SCI1 middle games
+		if (g_sci && g_sci->getPlatform() == Common::kPlatformMacintosh)
+			s_sciVersion = SCI_VERSION_1_LATE;
 		return;
 	case kResVersionSci1Late:
 		if (_volVersion == kResVersionSci11) {






More information about the Scummvm-git-logs mailing list