- Timestamp:
- Aug 19, 2009, 12:27:59 PM (15 years ago)
- Location:
- code/branches/resource2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/resource2/data/CMakeLists.txt
r5645 r5662 40 40 41 41 IF(NOT EXTERNAL_DATA_DIRECTORY) 42 MESSAGE(STATUS "Warning: External data directory not found. If you want to compile while downloading the data files, you will have to recompile about four files afterwards and relink everything. \\n You can specify your own folder with the DATA_DIRECTORY variable. Default location for the path is orxonox_root/data_extern") 42 MESSAGE(STATUS "Warning: External data directory not found. If you want to compile while downloading the data files, you will have to recompile about four files afterwards and relink everything.") 43 MESSAGE(STATUS "You can specify your own folder with the EXTERNAL_DATA_DIRECTORY variable. Default location for the path is orxonox_root/data_extern") 43 44 # Temporary override to the default location. 44 45 SET(EXTERNAL_DATA_DIRECTORY ${CMAKE_SOURCE_DIR}/data_extern) -
code/branches/resource2/src/core/Game.cc
r5658 r5662 274 274 { 275 275 // Add tick time for most of the states 276 uint64_t timeBeforeTick ;276 uint64_t timeBeforeTick = 0; 277 277 if ((*it)->getInfo().bIgnoreTickTime) 278 278 timeBeforeTick = this->gameClock_->getRealMicroseconds(); -
code/branches/resource2/src/core/GraphicsManager.cc
r5660 r5662 86 86 */ 87 87 GraphicsManager::GraphicsManager(bool bLoadRenderer) 88 : renderWindow_(0) 88 : ogreWindowEventListener_(new OgreWindowEventListener()) 89 , renderWindow_(0) 89 90 , viewport_(0) 90 , ogreWindowEventListener_(new OgreWindowEventListener())91 91 { 92 92 RegisterObject(GraphicsManager); -
code/branches/resource2/src/orxonox/tools/ResourceCollection.cc
r5652 r5662 31 31 #include "util/Exception.h" 32 32 #include "core/CoreIncludes.h" 33 #include "core/Resource.h" 33 34 #include "core/XMLPort.h" 34 35 #include "ResourceLocation.h" … … 44 45 45 46 // Default group is "General" 46 this->setResourceGroup( Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME);47 this->setResourceGroup(Resource::DEFAULT_GROUP); 47 48 } 48 49
Note: See TracChangeset
for help on using the changeset viewer.