Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7283 in orxonox.OLD for trunk/src/story_entities/campaign.cc


Ignore:
Timestamp:
Apr 13, 2006, 7:15:37 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: thread for audio, and 'is' to 'b'

File:
1 edited

Legend:

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

    r7193 r7283  
    7979  PRINTF(2)("Starting Campaign nr. %i\n", this->getStoryID());
    8080
    81   this->isRunning = true;
     81  this->bRunning = true;
    8282  this->bReturnToMenu = false;
    8383  this->run();
     
    9090bool Campaign::pause()
    9191{
    92   this->isPaused = true;
     92  this->bPaused = true;
    9393}
    9494
     
    100100{
    101101  PRINTF(4)("Resuming the current Campaign\n");
    102   this->isPaused = false;
     102  this->bPaused = false;
    103103}
    104104
     
    113113    this->bReturnToMenu = true;
    114114  else
    115     this->isRunning = false;  // fast exit
     115    this->bRunning = false;  // fast exit
    116116  if( this->currentEntity != NULL)
    117117  {
     
    129129  int                storyID = WORLD_ID_0;
    130130
    131   for( this->currentEntity = this->campaignData->getFirstLevel(), this->isRunning = true;
    132        this->currentEntity != NULL && this->isRunning;
     131  for( this->currentEntity = this->campaignData->getFirstLevel(), this->bRunning = true;
     132       this->currentEntity != NULL && this->bRunning;
    133133       this->currentEntity = this->campaignData->getNextLevel())
    134134  {
Note: See TracChangeset for help on using the changeset viewer.