Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7220 in orxonox.OLD for branches/std/src/world_entities/creatures


Ignore:
Timestamp:
Mar 12, 2006, 6:38:41 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: more strings

Location:
branches/std/src/world_entities/creatures
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/std/src/world_entities/creatures/md2_creature.cc

    r7217 r7220  
    5252 * @param fileName the name of the File to load the MD2Creature from (absolute path)
    5353 */
    54 MD2Creature::MD2Creature(const char* fileName)
     54MD2Creature::MD2Creature(const std::string& fileName)
    5555{
    5656  this->init();
     
    5959  if(!doc.LoadFile())
    6060  {
    61     PRINTF(2)("Loading file %s failed for md2 creature.\n", fileName);
     61    PRINTF(2)("Loading file %s failed for md2 creature.\n", fileName.c_str());
    6262    return;
    6363  }
  • branches/std/src/world_entities/creatures/md2_creature.h

    r7092 r7220  
    1919  public:
    2020
    21     MD2Creature(const char* fileName);
     21    MD2Creature(const std::string& fileName);
    2222    MD2Creature(const TiXmlElement* root = NULL);
    2323    virtual ~MD2Creature();
Note: See TracChangeset for help on using the changeset viewer.