From 786e58aa1a8988e3a4663f82e9e13619eab429d1 Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 24 Oct 2002 12:12:14 +0000 Subject: [PATCH] Removed some left over debugging output. --- src/Scenery/tileentry.cxx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Scenery/tileentry.cxx b/src/Scenery/tileentry.cxx index 7bd728e18..49029c3bb 100644 --- a/src/Scenery/tileentry.cxx +++ b/src/Scenery/tileentry.cxx @@ -700,9 +700,12 @@ static int fgPartialFreeSSGtree( ssgBranch *b, int n ) { if ( n > 0 ) { // we still have some delete budget left - if ( b->getNumKids() > 100 ) { - cout << "large family = " << b->getNumKids() << endl; - } + // if ( b->getNumKids() > 100 ) { + // cout << "large family = " << b->getNumKids() << endl; + // } + // deleting in reverse would help if my plib patch get's + // applied, but for now it will make things slower. + // for ( int i = b->getNumKids() - 1; i >= 0 ; --i ) { for ( int i = 0; i < b->getNumKids(); ++i ) { ssgEntity *kid = b->getKid(i); if ( kid->isAKindOf( ssgTypeBranch() ) && kid->getRef() <= 1 ) {