[Scummvm-cvs-logs] SF.net SVN: scummvm: [29061] scummvm/trunk/engines/parallaction

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sun Sep 23 22:23:49 CEST 2007


Revision: 29061
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29061&view=rev
Author:   peres001
Date:     2007-09-23 13:23:49 -0700 (Sun, 23 Sep 2007)

Log Message:
-----------
Oops. Some debug code was committed.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/exec_ns.cpp
    scummvm/trunk/engines/parallaction/inventory.cpp

Modified: scummvm/trunk/engines/parallaction/exec_ns.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/exec_ns.cpp	2007-09-23 20:17:50 UTC (rev 29060)
+++ scummvm/trunk/engines/parallaction/exec_ns.cpp	2007-09-23 20:23:49 UTC (rev 29061)
@@ -648,7 +648,6 @@
 }
 
 void Parallaction_ns::jobRemovePickedItem(void *parm, Job *j) {
-	printf("picking up item\n");
 
 	Zone *z = (Zone*)parm;
 

Modified: scummvm/trunk/engines/parallaction/inventory.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/inventory.cpp	2007-09-23 20:17:50 UTC (rev 29060)
+++ scummvm/trunk/engines/parallaction/inventory.cpp	2007-09-23 20:23:49 UTC (rev 29061)
@@ -67,9 +67,7 @@
 }
 
 void Parallaction::dropItem(uint16 v) {
-	printf("dropItem: %i (# = %i)\n", v, _inv->getNumItems());
 	_inv->removeItem(v);
-	printf("# = %i\n", _inv->getNumItems());
 }
 
 
@@ -241,8 +239,6 @@
 
 	if (pos == -1) return;
 
-	printf("highlight item: %i\n", pos);
-
 	uint16 line = pos / INVENTORY_ITEMS_PER_LINE;
 	uint16 col = pos % INVENTORY_ITEMS_PER_LINE;
 
@@ -311,7 +307,6 @@
 void Inventory::removeItem(ItemName name) {
 	ItemPosition pos = findItem(name);
 	if (pos == -1) {
-		printf("removeItem: name %i not found\n", name);
 		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