From 444e256efe52274caf464e941cd76abc9ccf1d61 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 10 May 2016 15:40:52 -0400 Subject: bug/memory fixes --- src/inventory.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/inventory.cpp') diff --git a/src/inventory.cpp b/src/inventory.cpp index a1181e2..5445aa9 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -110,14 +110,10 @@ void items(void) exml = exml->NextSiblingElement(); } - for (auto &i : ItemMap) { - std::cout << i->name << ", " << i->maxStackSize << ", " << i->dim.x << ", " << i->dim.y << std::endl; - } } int Inventory::addItem(std::string name, uint count) { - std::cout << "Adding: " << count << " " << name << "\n"; for (uint i = 0; i < ItemMap.size(); i++) { if (strCaseCmp(ItemMap[i]->name, name)) { for (auto &it : Items) { -- cgit v1.2.3