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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sun Oct 11 23:28:52 CEST 2009


Revision: 44950
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44950&view=rev
Author:   thebluegr
Date:     2009-10-11 21:28:52 +0000 (Sun, 11 Oct 2009)

Log Message:
-----------
Show a warning when a selector vocabulary can't be found and a static vocabulary is used

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

Modified: scummvm/trunk/engines/sci/engine/kernel.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kernel.cpp	2009-10-11 21:18:43 UTC (rev 44949)
+++ scummvm/trunk/engines/sci/engine/kernel.cpp	2009-10-11 21:28:52 UTC (rev 44950)
@@ -406,7 +406,9 @@
 		
 		if (staticSelectorTable.empty())
 			error("Kernel: Could not retrieve selector names");
-		
+		else
+			warning("No selector vocabulary found, using a static one");
+
 		for (uint32 i = 0; i < staticSelectorTable.size(); i++) {
 			_selectorNames.push_back(staticSelectorTable[i]);
 			if (oldScriptHeader)


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