From 5cf8e7e9334f60a10fb0ddabdc25c4a953151388 Mon Sep 17 00:00:00 2001 From: cc9cii Date: Fri, 4 Apr 2014 06:16:26 +1100 Subject: [PATCH] Remove logging. --- apps/openmw/mwmechanics/pathgrid.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/apps/openmw/mwmechanics/pathgrid.cpp b/apps/openmw/mwmechanics/pathgrid.cpp index 5580e5d3f..f8b24fa1a 100644 --- a/apps/openmw/mwmechanics/pathgrid.cpp +++ b/apps/openmw/mwmechanics/pathgrid.cpp @@ -124,13 +124,6 @@ namespace MWMechanics } buildConnectedPoints(); mIsGraphConstructed = true; -#if 0 - std::cout << "loading pathgrid " << - +"\""+ mPathgrid->mCell +"\"" - +", "+ std::to_string(mPathgrid->mData.mX) - +", "+ std::to_string(mPathgrid->mData.mY) - << std::endl; -#endif return true; } @@ -211,11 +204,6 @@ namespace MWMechanics if(mSCCPoint[v].first == -1) // undefined (haven't visited) recursiveStrongConnect(v); } -#if 0 - std::cout << "components: " << std::to_string(mSCCId) - +", "+ mPathgrid->mCell - << std::endl; -#endif } bool PathgridGraph::isPointConnected(const int start, const int end) const