Browse Source

Cleanup

Remov comments to console
marauder2k7 5 years ago
parent
commit
291564052f
1 changed files with 0 additions and 2 deletions
  1. 0 2
      engine/source/2d/sceneobject/Path.cc

+ 0 - 2
engine/source/2d/sceneobject/Path.cc

@@ -79,12 +79,10 @@ void Path::preIntegrate(const F32 totalTime, const F32 elapsedTime, DebugStats *
                pObj.mLoopCount++;
                if ((pObj.mMaxLoop > 0) && (pObj.mLoopCount >= pObj.mMaxLoop))
                {
-                  Con::printf("why we stopping?");
                   stop = true;
                }
                else
                {
-                  Con::printf("back to 0");
                   pObj.mPrevNode = pObj.mCurrNode;
                   pObj.mCurrNode = 0;
                   pObj.mNextNode = pObj.mCurrNode;