[Scummvm-cvs-logs] SF.net SVN: scummvm: [29679] scummvm/trunk/engines/lure/debugger.cpp

dreammaster at users.sourceforge.net dreammaster at users.sourceforge.net
Sat Dec 1 11:35:25 CET 2007


Revision: 29679
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29679&view=rev
Author:   dreammaster
Date:     2007-12-01 02:35:24 -0800 (Sat, 01 Dec 2007)

Log Message:
-----------
Fix for give method - one object range was incorrectly being reported as not being valid objects

Modified Paths:
--------------
    scummvm/trunk/engines/lure/debugger.cpp

Modified: scummvm/trunk/engines/lure/debugger.cpp
===================================================================
--- scummvm/trunk/engines/lure/debugger.cpp	2007-12-01 10:34:22 UTC (rev 29678)
+++ scummvm/trunk/engines/lure/debugger.cpp	2007-12-01 10:35:24 UTC (rev 29679)
@@ -215,7 +215,7 @@
 
 		if (itemHotspot == NULL) {
 			DebugPrintf("The specified item does not exist\n");
-		} else if ((itemNum < 0x408) || (itemNum >= 0x2710)) {
+		} else if (itemNum < 0x408) {
 			DebugPrintf("The specified item number is not an object\n");
 		} else if ((charNum < PLAYER_ID) || (charNum >= 0x408) ||
 				   (charHotspot == NULL)) {


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