From a8b2eb1fe9f16e51602c6cee8717082211555fbc Mon Sep 17 00:00:00 2001 From: cc9cii Date: Thu, 3 Apr 2014 22:49:22 +1100 Subject: [PATCH] Make Travis happy. --- apps/openmw/mwmechanics/pathfinding.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/openmw/mwmechanics/pathfinding.cpp b/apps/openmw/mwmechanics/pathfinding.cpp index 1ef05eda8..9fcd335e4 100644 --- a/apps/openmw/mwmechanics/pathfinding.cpp +++ b/apps/openmw/mwmechanics/pathfinding.cpp @@ -442,13 +442,13 @@ namespace MWMechanics } buildConnectedPoints(); mIsGraphConstructed = true; -//#if 0 +#if 0 std::cout << "loading pathgrid " << +"\""+ mPathgrid->mCell +"\"" +", "+ std::to_string(mPathgrid->mData.mX) +", "+ std::to_string(mPathgrid->mData.mY) << std::endl; -//#endif +#endif return true; } @@ -529,11 +529,11 @@ namespace MWMechanics if(mSCCPoint[v].first == -1) // undefined (haven't visited) recursiveStrongConnect(v); } -//#if 0 +#if 0 std::cout << "components: " << std::to_string(mSCCId) +", "+ mPathgrid->mCell << std::endl; -//#endif +#endif } bool PathgridGraph::isPointConnected(const int start, const int end) const