Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3397 in orxonox.OLD


Ignore:
Timestamp:
Feb 6, 2005, 4:04:01 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: importer: now name is io, the output was wrong :)

Location:
orxonox/trunk/src/importer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/importer/model.cc

    r3396 r3397  
    4242Model::~Model()
    4343{
    44   PRINTF(0)("Deleting Model ");
     44  PRINTF(3)("Deleting Model ");
    4545  if (this->name)
    4646    {
    47       PRINT(0)("%s\n");
     47      PRINT(3)("%s\n", this->name);
    4848      delete []this->name;
    4949    }
    5050  else
    51       PRINT(0)("\n");
    52 
    53   PRINTF(2)("Deleting display Lists.\n");
     51      PRINT(3)("\n");
     52
     53  PRINTF(3)("Deleting display Lists.\n");
    5454  Group* walker = this->firstGroup;
    5555  while (walker != NULL)
     
    6161    }
    6262
    63   PRINTF(2)("Deleting Materials.\n");
     63  PRINTF(3)("Deleting Materials.\n");
    6464  if (this->material)
    6565    delete this->material;
  • orxonox/trunk/src/importer/objModel.cc

    r3396 r3397  
    112112  this->name = new char[strlen(name)+1];
    113113  strcpy(this->name, name);
    114 
    115114  if (this->material)
    116115    this->material->addTexturePath(this->objPath);
Note: See TracChangeset for help on using the changeset viewer.