Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 12, 2006, 1:13:20 AM (18 years ago)
Author:
patrick
Message:

network: some more menu work. There is no menu visible yet (only for your info)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/story_entities/game_world.cc

    r6500 r6504  
    115115  .describe("The Filename of this GameWorld (relative from the data-dir)");
    116116
     117//   LoadParam(root, "soundtrack", this->dataTank, GameWorldData, setSoundTrack);
     118
    117119  PRINTF(4)("Loaded GameWorld specific stuff\n");
    118120}
     
    151153  if( getPath() == NULL)
    152154  {
    153     PRINTF(1)("GameWorld has no path specified for loading");
     155    PRINTF(1)("GameWorld has no path specified for loading\n");
    154156    return (ErrorMessage){213,"Path not specified","GameWorld::load()"};
    155157  }
     
    242244void GameWorld::run()
    243245{
     246  /* start the music */
     247  if(this->dataTank->music != NULL)
     248    this->dataTank->music->playback();
     249
    244250  this->lastFrame = SDL_GetTicks ();
    245251  PRINTF(3)("GameWorld::mainLoop() - Entering main loop\n");
Note: See TracChangeset for help on using the changeset viewer.