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

waltervn at users.sourceforge.net waltervn at users.sourceforge.net
Tue Nov 3 00:06:30 CET 2009


Revision: 45619
          http://scummvm.svn.sourceforge.net/scummvm/?rev=45619&view=rev
Author:   waltervn
Date:     2009-11-02 23:06:30 +0000 (Mon, 02 Nov 2009)

Log Message:
-----------
SCI: Fix hoyle hack

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

Modified: scummvm/trunk/engines/sci/engine/kmath.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kmath.cpp	2009-11-02 21:57:16 UTC (rev 45618)
+++ scummvm/trunk/engines/sci/engine/kmath.cpp	2009-11-02 23:06:30 UTC (rev 45619)
@@ -38,7 +38,7 @@
 reg_t kAbs(EngineState *s, int argc, reg_t *argv) {
 	// This is a hack, but so is the code in Hoyle1 that needs it.
 	if (argv[0].segment)
-		return make_reg(0, 0x3e8); // Yes people, this is an object
+		return make_reg(0, 0x3e9); // Yes people, this is an object
 	return make_reg(0, abs(argv[0].toSint16()));
 }
 


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