Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 21, 2009, 1:18:36 PM (15 years ago)
Author:
rgrieder
Message:

Found some non empty new lines.

Location:
code/branches/presentation2/src/orxonox/sound
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/orxonox/sound/AmbientSound.cc

    r6382 r6387  
    6161        }
    6262    }
    63    
     63
    6464    void AmbientSound::registerVariables()
    6565    {
     
    101101            SoundManager::getInstance().pauseAmbientSound(this);
    102102    }
    103    
     103
    104104    float AmbientSound::getRealVolume()
    105105    {
  • code/branches/presentation2/src/orxonox/sound/BaseSound.cc

    r6383 r6387  
    150150        this->updateVolume();
    151151    }
    152    
     152
    153153    void BaseSound::updateVolume()
    154154    {
     
    252252        }
    253253    }
    254    
     254
    255255    void BaseSound::stateChanged()
    256256    {
  • code/branches/presentation2/src/orxonox/sound/SoundManager.cc

    r6383 r6387  
    134134        else
    135135            COUT(2) << "Sound Warning: MIME Type retrieval failed: " << alutGetErrorString(alutGetError()) << std::endl;
    136        
     136
    137137        this->mute_[SoundType::All]     = 1.0f;
    138138        this->mute_[SoundType::Music]   = 1.0f;
     
    431431    void SoundManager::processCrossFading(float dt)
    432432    {
    433        
     433
    434434        // Hacky solution to the fade delay while loading a level.
    435435        if(dt > 0.2)
     
    437437            return;
    438438        }
    439        
     439
    440440        // FADE IN
    441441        for (std::list<SmartPtr<AmbientSound> >::iterator it= this->fadeInList_.begin(); it != this->fadeInList_.end(); )
  • code/branches/presentation2/src/orxonox/sound/SoundManager.h

    r6383 r6387  
    7575        void preUpdate(const Clock& time);
    7676        void setConfigValues();
    77        
     77
    7878        // tolua_begin
    7979        static SoundManager& getInstance() { return Singleton<SoundManager>::getInstance(); }
  • code/branches/presentation2/src/orxonox/sound/WorldSound.cc

    r6382 r6387  
    5151        this->registerVariables();
    5252    }
    53    
     53
    5454    void WorldSound::registerVariables()
    5555    {
Note: See TracChangeset for help on using the changeset viewer.