Fixed comments

This commit is contained in:
Robert Osfield
2004-01-06 14:37:25 +00:00
parent 3b82c67c13
commit 4a0a7c7801

View File

@@ -150,8 +150,8 @@ osg::Node* TXPTileNode::seamReplacement(osg::Node* child,int x, int y, int level
TXPSeamLOD* seam = new TXPSeamLOD(x,y,level,lod1->getCenter(),lod1->getMinRange(0),lod1->getMaxRange(0),lod2->getMaxRange(0));
seam->setArchive(_archive);
seam->addChild(lod1->getChild(0)); // high res
seam->addChild(lod2->getChild(0)); // low res
seam->addChild(lod1->getChild(0)); // low res
seam->addChild(lod2->getChild(0)); // high res
return seam;
}
}