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

waltervn at users.sourceforge.net waltervn at users.sourceforge.net
Sun Aug 30 19:47:48 CEST 2009


Revision: 43831
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43831&view=rev
Author:   waltervn
Date:     2009-08-30 17:47:48 +0000 (Sun, 30 Aug 2009)

Log Message:
-----------
SCI: Fix missing 'else' in r43824.

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

Modified: scummvm/trunk/engines/sci/engine/state.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/state.cpp	2009-08-30 17:01:03 UTC (rev 43830)
+++ scummvm/trunk/engines/sci/engine/state.cpp	2009-08-30 17:47:48 UTC (rev 43831)
@@ -451,8 +451,8 @@
 
 			if (version >= SCI_VERSION_1_MIDDLE)
 				_lofsType = SCI_VERSION_1_MIDDLE;
-
-			_lofsType = SCI_VERSION_0_EARLY;
+			else
+				_lofsType = SCI_VERSION_0_EARLY;
 		} else if (couldBeAbs) {
 			_lofsType = SCI_VERSION_1_MIDDLE;
 		} else {


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