Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 679


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
Location:
code/branches/FICN
Files:
1 added
3 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
  • code/branches/FICN/visual_studio

    • Property svn:ignore set to
      obj
  • code/branches/FICN/visual_studio/benixonox.vcproj

    r678 r679  
    472472                        >
    473473                        <File
    474                                 RelativePath=".\bin\levels\sample.oxw"
     474                                RelativePath="..\bin\levels\sample.oxw"
    475475                                >
    476476                        </File>
Note: See TracChangeset for help on using the changeset viewer.