aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/parallaction/exec_ns.cpp1
-rw-r--r--engines/parallaction/inventory.cpp5
2 files changed, 0 insertions, 6 deletions
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;
}