Changeset 6413
- Timestamp:
 - Dec 25, 2009, 2:06:28 PM (16 years ago)
 - Location:
 - code/branches/presentation2/src
 - Files:
 - 
          
- 2 edited
 
- 
          libraries/core/DynLib.cc (modified) (1 diff)
 - 
          orxonox/sound/SoundManager.cc (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
code/branches/presentation2/src/libraries/core/DynLib.cc
r6394 r6413 70 70 COUT(2) << "Loading module " << mName << std::endl; 71 71 72 conststd::string& name = mName;72 std::string& name = mName; 73 73 #ifdef ORXONOX_PLATFORM_LINUX 74 74 // dlopen() does not add .so to the filename, like windows does for .dll  - 
        
code/branches/presentation2/src/orxonox/sound/SoundManager.cc
r6411 r6413 608 608 } 609 609 } 610 int used = std::max( this->usedSoundSources_.size(), this->minSources_);610 int used = std::max((unsigned int)(this->usedSoundSources_.size()), this->minSources_); 611 611 // Subtract those we added in the statement above trough std::max 612 612 int available = (int)this->availableSoundSources_.size() - (used - (int)this->usedSoundSources_.size());  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






