Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6634 in orxonox.OLD for trunk/src/story_entities/game_world.cc


Ignore:
Timestamp:
Jan 21, 2006, 1:18:19 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the network-branche back to the trunk

merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/network . -r6500:HEAD
minor conflicts in texture and one Makefile resolved to the trunk

also made a small patch to texture, so it Modulates with GL_REPEAT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/game_world.cc

    r6619 r6634  
    114114  .describe("The Filename of this GameWorld (relative from the data-dir)");
    115115
     116//   LoadParam(root, "soundtrack", this->dataTank, GameWorldData, setSoundTrack);
     117
    116118  PRINTF(4)("Loaded GameWorld specific stuff\n");
    117119}
     
    150152  if( getPath() == NULL)
    151153  {
    152     PRINTF(1)("GameWorld has no path specified for loading");
     154    PRINTF(1)("GameWorld has no path specified for loading\n");
    153155    return (ErrorMessage){213,"Path not specified","GameWorld::load()"};
    154156  }
     
    241243void GameWorld::run()
    242244{
     245  /* start the music */
     246  if(this->dataTank->music != NULL)
     247    this->dataTank->music->playback();
     248
    243249  this->lastFrame = SDL_GetTicks ();
    244250  PRINTF(3)("GameWorld::mainLoop() - Entering main loop\n");
Note: See TracChangeset for help on using the changeset viewer.