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

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Thu Oct 15 17:07:48 CEST 2009


Revision: 45123
          http://scummvm.svn.sourceforge.net/scummvm/?rev=45123&view=rev
Author:   m_kiewitz
Date:     2009-10-15 15:07:47 +0000 (Thu, 15 Oct 2009)

Log Message:
-----------
SCI: pointer_add -> error changed to warning b/c iceman does it. Just ignoring it doesnt seem to have any effect on the game

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

Modified: scummvm/trunk/engines/sci/engine/vm.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/vm.cpp	2009-10-15 14:57:40 UTC (rev 45122)
+++ scummvm/trunk/engines/sci/engine/vm.cpp	2009-10-15 15:07:47 UTC (rev 45123)
@@ -477,7 +477,8 @@
 		break;
 
 	default:
-		error("[VM] Error: Attempt to add %d to pointer %04x:%04x: Pointer arithmetics of this type unsupported", offset, PRINT_REG(base));
+		// Changed this to warning, because iceman does this during dancing with girl
+		warning("[VM] Error: Attempt to add %d to pointer %04x:%04x: Pointer arithmetics of this type unsupported", offset, PRINT_REG(base));
 		return NULL_REG;
 
 	}


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