[Scummvm-cvs-logs] SF.net SVN: scummvm:[52513] scummvm/trunk/engines/sci/engine/features.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Sat Sep 4 10:28:54 CEST 2010


Revision: 52513
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52513&view=rev
Author:   m_kiewitz
Date:     2010-09-04 08:28:53 +0000 (Sat, 04 Sep 2010)

Log Message:
-----------
SCI: lsl2 early uses sci0late sound

fixes bug #3037012 and lsl2 now has music everywhere

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/features.cpp

Modified: scummvm/trunk/engines/sci/engine/features.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/features.cpp	2010-09-04 07:29:27 UTC (rev 52512)
+++ scummvm/trunk/engines/sci/engine/features.cpp	2010-09-04 08:28:53 UTC (rev 52513)
@@ -140,7 +140,10 @@
 		if (getSciVersion() == SCI_VERSION_0_EARLY) {
 			// This game is using early SCI0 sound code (different headers than
 			// SCI0 late)
-			_doSoundType = SCI_VERSION_0_EARLY;
+			if (g_sci->getGameId() == GID_LSL2)
+				_doSoundType = SCI_VERSION_0_LATE;
+			else
+				_doSoundType = SCI_VERSION_0_EARLY;
 #ifdef ENABLE_SCI32
 		} else if (getSciVersion() >= SCI_VERSION_2_1) {
 			_doSoundType = SCI_VERSION_2_1;


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