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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue Sep 29 16:28:38 CEST 2009


Revision: 44462
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44462&view=rev
Author:   thebluegr
Date:     2009-09-29 14:28:37 +0000 (Tue, 29 Sep 2009)

Log Message:
-----------
Oops - don't attempt to print the sought kernel function name when its empty

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-09-29 14:24:07 UTC (rev 44461)
+++ scummvm/trunk/engines/sci/engine/kernel.cpp	2009-09-29 14:28:37 UTC (rev 44462)
@@ -594,7 +594,7 @@
 
 		if (sought_name.empty()) {
 			// No name was given -> must be an unknown opcode
-			warning("Kernel function %s[%x] unknown", sought_name.c_str(), functnr);
+			warning("Kernel function %x unknown", functnr);
 			_kernelFuncs[functnr].isDummy = true;
 			continue;
 		}


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