Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7230 in orxonox.OLD for trunk/src/world_entities/skybox.cc


Ignore:
Timestamp:
Mar 21, 2006, 3:20:36 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the std::branche back

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/skybox.cc

    r7221 r7230  
    300300    textureName = "";
    301301  }
    302   char* texName;
    303   SYNCHELP_READ_STRINGM( texName, NWT_SB_TEXTURENAME );
     302  std::string texName;
     303  SYNCHELP_READ_STRING( texName, NWT_SB_TEXTURENAME );
    304304
    305305  this->setSize( size );
     
    330330
    331331    SYNCHELP_WRITE_FLOAT(this->size, NWT_SB_SIZE);
    332     SYNCHELP_WRITE_STRING(this->textureName.c_str(), NWT_SB_TEXTURENAME);
     332    SYNCHELP_WRITE_STRING(this->textureName, NWT_SB_TEXTURENAME);
    333333
    334334    return SYNCHELP_WRITE_N;
Note: See TracChangeset for help on using the changeset viewer.