commit d06c4687
Remove debug comments
Changed files
| M | src/sagotmx/tmx_struct.h before |
diff --git a/src/sagotmx/tmx_struct.h b/src/sagotmx/tmx_struct.h
index 6cd1f80..c090a2a 100644
--- a/src/sagotmx/tmx_struct.h
+++ b/src/sagotmx/tmx_struct.h
@@ -313,14 +313,10 @@ inline TileSet node2tileset(rapidxml::xml_node<> * tileset_node) {
bool found = false;
rapidxml::xml_node<> * image_node = getElement(tileset_node, "image", found);
if (found) {
- std::cout << "Found image for " << ts.name << ":" << ts.source << "\n";
setValueFromAttribute(image_node, "source", ts.image.source);
setValueFromAttribute(image_node, "width", ts.image.width);
setValueFromAttribute(image_node, "height", ts.image.height);
}
- else {
- std::cout << "Did not find an image node for " << ts.name << ":" << ts.source << "\n";
- }
rapidxml::xml_node<> * terraintypes_node = tileset_node->first_node("terraintypes");
if (terraintypes_node) {
for (rapidxml::xml_node<> * terrain_node = terraintypes_node->first_node("terrain"); terrain_node; terrain_node = terrain_node->next_sibling()) {