diff --git a/code/LWOLoader.cpp b/code/LWOLoader.cpp index 7ea1caf99..2e2e2934b 100644 --- a/code/LWOLoader.cpp +++ b/code/LWOLoader.cpp @@ -537,7 +537,7 @@ void LWOImporter::GenerateNodeGraph(std::map& apcNodes) root->mName.Set(""); //Set parent of all children, inserting pivots - std::cout << "Set parent of all children" << std::endl; + //std::cout << "Set parent of all children" << std::endl; std::map mapPivot; for (std::map::iterator itapcNodes = apcNodes.begin(); itapcNodes != apcNodes.end(); ++itapcNodes) { @@ -569,7 +569,7 @@ void LWOImporter::GenerateNodeGraph(std::map& apcNodes) } //Merge pivot map into node map - std::cout << "Merge pivot map into node map" << std::endl; + //std::cout << "Merge pivot map into node map" << std::endl; for (std::map::iterator itMapPivot = mapPivot.begin(); itMapPivot != mapPivot.end(); ++itMapPivot) { apcNodes[itMapPivot->first] = itMapPivot->second; }