Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 23, 2007, 11:26:17 PM (16 years ago)
Author:
rgrieder
Message:
  • added missing LoaderPlatform.h (filename change from last commit)
  • GraphicsEngine will now read plugins_d.cfg if _DEBUG and WIN32 are defined @x3n: maybe you'll have to create that file
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/GraphicsEngine.cc

    r616 r679  
    6464    root_ = new Root(NULL, configPath_ + "ogre.cfg", configPath_ + "Ogre.log");
    6565#endif*/
    66     root_ = new Root();
     66#if defined(_DEBUG) && defined(WIN32)
     67    std::string plugin_filename = "plugins_d.cfg";
     68#else
     69    std::string plugin_filename = "plugins.cfg";
     70#endif
     71    root_ = new Root(plugin_filename);
    6772  }
    6873
Note: See TracChangeset for help on using the changeset viewer.