Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 25, 2009, 2:06:28 PM (14 years ago)
Author:
dafrick
Message:

Resolved some bugs that stood in the way of compiling.

  • In DynLib.cc there was a const string that (under linux) needed to be changed later. ⇒ Not const anymore.
  • In SoundManager.cc the std::max algorithm hat one argument size_t and one unsigned int. Not they're both unsigned int.
File:
1 edited

Legend:

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

    r6411 r6413  
    608608            }
    609609        }
    610         int used = std::max(this->usedSoundSources_.size(), this->minSources_);
     610        int used = std::max((unsigned int)(this->usedSoundSources_.size()), this->minSources_);
    611611        // Subtract those we added in the statement above trough std::max
    612612        int available = (int)this->availableSoundSources_.size() - (used - (int)this->usedSoundSources_.size());
Note: See TracChangeset for help on using the changeset viewer.