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

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Wed Jun 30 13:09:49 CEST 2010


Revision: 50529
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50529&view=rev
Author:   m_kiewitz
Date:     2010-06-30 11:09:49 +0000 (Wed, 30 Jun 2010)

Log Message:
-----------
SCI: fixed a typo, so that workarounds really trigger an ignore kernel call for now

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-06-30 11:08:23 UTC (rev 50528)
+++ scummvm/trunk/engines/sci/engine/vm.cpp	2010-06-30 11:09:49 UTC (rev 50529)
@@ -796,7 +796,7 @@
 			error("[VM] k%s (%x) signature mismatch via method %s::%s (script %d, localCall %x)", kernel->getKernelName(kernelFuncNr).c_str(), kernelFuncNr, originReply.objectName.c_str(), originReply.methodName.c_str(), originReply.scriptNr, originReply.localCallOffset);
 		}
 		// FIXME: implement some real workaround type logic - ignore call, still do call etc.
-		if (!workaround.segment)
+		if (workaround.segment)
 			return;
 	}
 


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