[Scummvm-cvs-logs] scummvm master -> f7d13415eeacc41201e67bd7cfb352df998867f7

m-kiewitz m_kiewitz at users.sourceforge.net
Thu Jan 30 21:11:45 CET 2014


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:
f7d13415ee SCI: Remove LSL1 Spanish hack (to SCI1 MIDDLE)


Commit: f7d13415eeacc41201e67bd7cfb352df998867f7
    https://github.com/scummvm/scummvm/commit/f7d13415eeacc41201e67bd7cfb352df998867f7
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2014-01-30T12:11:15-08:00

Commit Message:
SCI: Remove LSL1 Spanish hack (to SCI1 MIDDLE)

fixes transitions not working properly (and
possibly other stuff), hack was added because
of bug #5219, strangely none of it occurs anymore

Changed paths:
    engines/sci/resource.cpp



diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index 52155cd..3b3f3ed 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -2264,15 +2264,6 @@ void ResourceManager::detectSciVersion() {
 			s_sciVersion = SCI_VERSION_1_1;
 			return;
 		}
-		// FIXME: this is really difficult, lsl1 spanish has map/vol sci1late
-		//  and the only current detection difference is movecounttype which
-		//  is increment here, but ignore for all the regular sci1late games
-		//  the problem is, we dont have access to that detection till later
-		//  so maybe (part of?) that detection should get moved in here
-		if (g_sci && (g_sci->getGameId() == GID_LSL1) && (g_sci->getLanguage() == Common::ES_ESP)) {
-			s_sciVersion = SCI_VERSION_1_MIDDLE;
-			return;
-		}
 		s_sciVersion = SCI_VERSION_1_LATE;
 		return;
 	case kResVersionSci11:






More information about the Scummvm-git-logs mailing list