*** empty log message ***

This commit is contained in:
David Rose 2001-05-14 23:39:25 +00:00
parent 88e4c65bc9
commit 7ca8c09296
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ PStatCollector Character::_anim_pcollector("App:Animation", RGBColorf(1,0,1), 30
////////////////////////////////////////////////////////////////////
Character::
Character(const Character &copy) :
PartBundleNode(copy.get_name(), new CharacterJointBundle(copy.get_name())),
PartBundleNode(copy.get_name(), new CharacterJointBundle(copy.get_bundle()->get_name())),
_cv(DynamicVertices::deep_copy(copy._cv)),
_computed_vertices(copy._computed_vertices),
_parts(copy._parts),

View File

@ -994,7 +994,7 @@ int framework_main(int argc, char *argv[]) {
pFileCollection = &grided_files;
char *pStr=(argv[a])+2;
if(*pStr!=NULL) {
if (*pStr != '\0') {
gridrepeats=atoi(pStr);
if(gridrepeats<1)
gridrepeats=1;