From 19e9161a205920d613d07460c3a34d363537c21e Mon Sep 17 00:00:00 2001 From: Nicola Mettifogo Date: Sun, 23 Sep 2007 20:23:49 +0000 Subject: Oops. Some debug code was committed. svn-id: r29061 --- engines/parallaction/exec_ns.cpp | 1 - engines/parallaction/inventory.cpp | 5 ----- 2 files changed, 6 deletions(-) (limited to 'engines/parallaction') diff --git a/engines/parallaction/exec_ns.cpp b/engines/parallaction/exec_ns.cpp index e413e8c7a4..75e359aa04 100644 --- a/engines/parallaction/exec_ns.cpp +++ b/engines/parallaction/exec_ns.cpp @@ -648,7 +648,6 @@ int16 Parallaction::pickupItem(Zone *z) { } void Parallaction_ns::jobRemovePickedItem(void *parm, Job *j) { - printf("picking up item\n"); Zone *z = (Zone*)parm; diff --git a/engines/parallaction/inventory.cpp b/engines/parallaction/inventory.cpp index 2b4989bb08..b41a6f9f8d 100644 --- a/engines/parallaction/inventory.cpp +++ b/engines/parallaction/inventory.cpp @@ -67,9 +67,7 @@ int Parallaction::addInventoryItem(ItemName item, uint32 value) { } 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 @@ void highlightInventoryItem(ItemPosition pos, byte color) { 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 @@ ItemPosition Inventory::findItem(ItemName name) const { void Inventory::removeItem(ItemName name) { ItemPosition pos = findItem(name); if (pos == -1) { - printf("removeItem: name %i not found\n", name); return; } -- cgit v1.2.3