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

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Fri Jul 23 23:13:58 CEST 2010


Revision: 51224
          http://scummvm.svn.sourceforge.net/scummvm/?rev=51224&view=rev
Author:   m_kiewitz
Date:     2010-07-23 21:13:57 +0000 (Fri, 23 Jul 2010)

Log Message:
-----------
SCI: some small logkernel changes

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

Modified: scummvm/trunk/engines/sci/engine/vm.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/vm.cpp	2010-07-23 21:11:56 UTC (rev 51223)
+++ scummvm/trunk/engines/sci/engine/vm.cpp	2010-07-23 21:13:57 UTC (rev 51224)
@@ -650,13 +650,13 @@
 			printf(", ");
 		uint16 regType = kernel->findRegType(argv[parmNr]);
 		if (regType & SIG_TYPE_NULL)
-			printf("NULL");
+			printf("0");
 		else if (regType & SIG_TYPE_UNINITIALIZED)
 			printf("UNINIT");
 		else if (regType & SIG_IS_INVALID)
 			printf("INVALID");
 		else if (regType & SIG_TYPE_INTEGER)
-			printf("%04x", argv[parmNr].offset);
+			printf("%d", argv[parmNr].offset);
 		else {
 			printf("%04x:%04x", PRINT_REG(argv[parmNr]));
 			switch (regType) {


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