[Scummvm-cvs-logs] SF.net SVN: scummvm:[42169] scummvm/trunk/engines/sci

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Mon Jul 6 13:15:42 CEST 2009


Revision: 42169
          http://scummvm.svn.sourceforge.net/scummvm/?rev=42169&view=rev
Author:   thebluegr
Date:     2009-07-06 11:15:42 +0000 (Mon, 06 Jul 2009)

Log Message:
-----------
Added seChanged the warning displayed when a selector can't be mapped to a debugC - it's perfectly normal not to find certain selectors in certain SCI versions. Also, fixed the SCI version enums

Modified Paths:
--------------
    scummvm/trunk/engines/sci/sci.h
    scummvm/trunk/engines/sci/vocabulary.cpp

Modified: scummvm/trunk/engines/sci/sci.h
===================================================================
--- scummvm/trunk/engines/sci/sci.h	2009-07-06 11:10:35 UTC (rev 42168)
+++ scummvm/trunk/engines/sci/sci.h	2009-07-06 11:15:42 UTC (rev 42169)
@@ -75,8 +75,8 @@
 	SCI_VERSION_01_VGA = 3,
 	SCI_VERSION_01_VGA_ODD = 4,
 	SCI_VERSION_1 = 5,
-	SCI_VERSION_1_1 = 7,
-	SCI_VERSION_32 = 8
+	SCI_VERSION_1_1 = 6,
+	SCI_VERSION_32 = 7
 };
 
 extern const char *versionNames[8];

Modified: scummvm/trunk/engines/sci/vocabulary.cpp
===================================================================
--- scummvm/trunk/engines/sci/vocabulary.cpp	2009-07-06 11:10:35 UTC (rev 42168)
+++ scummvm/trunk/engines/sci/vocabulary.cpp	2009-07-06 11:15:42 UTC (rev 42169)
@@ -472,7 +472,7 @@
 			return pos;
 	}
 
-	warning("Could not map '%s' to any selector", selectorName);
+	debugC(2, kDebugLevelVM, "Could not map '%s' to any selector\n", selectorName);
 
 	return -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