From: <axl...@us...> - 2009-08-08 23:08:42
|
Revision: 462 http://hgengine.svn.sourceforge.net/hgengine/?rev=462&view=rev Author: axlecrusher Date: 2009-08-08 23:08:31 +0000 (Sat, 08 Aug 2009) Log Message: ----------- remove debugging Modified Paths: -------------- Mercury2/src/MercuryAsset.cpp Mercury2/src/MercuryNode.cpp Modified: Mercury2/src/MercuryAsset.cpp =================================================================== --- Mercury2/src/MercuryAsset.cpp 2009-08-08 23:07:49 UTC (rev 461) +++ Mercury2/src/MercuryAsset.cpp 2009-08-08 23:08:31 UTC (rev 462) @@ -67,10 +67,8 @@ void MercuryAsset::LoadFromXML(const XMLNode& node) { - printf("asset xml\n"); if ( !node.Attribute("nocull").empty() ) { - printf("NO CULL!!!!!!!!!!\n"); SetExcludeFromCull( node.Attribute("nocull")=="true" ); } } Modified: Mercury2/src/MercuryNode.cpp =================================================================== --- Mercury2/src/MercuryNode.cpp 2009-08-08 23:07:49 UTC (rev 461) +++ Mercury2/src/MercuryNode.cpp 2009-08-08 23:08:31 UTC (rev 462) @@ -220,7 +220,6 @@ MAutoPtr< MercuryAsset > asset( AssetFactory::GetInstance().Generate( child.Attribute("type"), key ) ); if ( asset.IsValid() ) { - printf("new asset %s\n", child.Attribute("type").c_str()); asset->LoadFromXML( child ); this->AddAsset( asset ); asset->Init( this ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |