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/libraries/core/DynLib.cc

    r6394 r6413  
    7070        COUT(2) << "Loading module " << mName << std::endl;
    7171
    72         const std::string& name = mName;
     72        std::string& name = mName;
    7373#ifdef ORXONOX_PLATFORM_LINUX
    7474        // dlopen() does not add .so to the filename, like windows does for .dll
Note: See TracChangeset for help on using the changeset viewer.