Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7858


Ignore:
Timestamp:
Feb 12, 2011, 11:30:33 AM (13 years ago)
Author:
landauf
Message:

removed some spaces

Location:
code/trunk/src/orxonox/sound
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/sound/BaseSound.cc

    r7856 r7858  
    109109            this->audioSource_ += 123455;
    110110            while (alIsSource(++this->audioSource_));
    111            
     111
    112112            return true; // sound source destroyed - return true
    113113        }
  • code/trunk/src/orxonox/sound/SoundManager.cc

    r7856 r7858  
    7070    {
    7171        RegisterRootObject(SoundManager);
    72        
     72
    7373        this->bDestructorCalled_ = false;
    7474
  • code/trunk/src/orxonox/sound/SoundManager.h

    r7855 r7858  
    146146        std::vector<ALuint> availableSoundSources_;
    147147        std::vector<std::pair<ALuint, BaseSound*> > usedSoundSources_;
    148        
     148
    149149        bool bDestructorCalled_; ///< Becomes true if the destructor is called - used to prevent ambient sounds from registering after the lists were cleared
    150150
Note: See TracChangeset for help on using the changeset viewer.