Changeset 1651 for code/branches/gui/src/orxonox
- Timestamp:
- Jul 27, 2008, 5:14:22 PM (16 years ago)
- Location:
- code/branches/gui/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/orxonox/CMakeLists.txt
r1645 r1651 60 60 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc 61 61 COMMAND ${TOLUA_EXE} -n Orxonox -o ../../src/orxonox/tolua/tolua_bind.cc -H ../../src/orxonox/tolua/tolua_bind.h ../../src/orxonox/tolua/tolua.pkg 62 DEPENDS tolua 62 DEPENDS tolua ${CMAKE_SOURCE_DIR}/src/orxonox/tolua/tolua.pkg 63 63 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib 64 64 ) -
code/branches/gui/src/orxonox/GraphicsEngine.cc
r1641 r1651 293 293 this->renderWindow_ = root_->initialise(true, "OrxonoxV2"); 294 294 } 295 catch ( ...)295 catch (std::exception& ex) 296 296 { 297 297 COUT(2) << "Error: There was an exception when initialising Ogre Root." << std::endl; 298 COUT(1) << ex.what() << std::endl; 298 299 return false; 299 300 } -
code/branches/gui/src/orxonox/Settings.cc
r1638 r1651 64 64 { 65 65 RegisterRootObject(Settings); 66 gameMode_ = GameMode::GM_ Unspecified;66 gameMode_ = GameMode::GM_None; 67 67 setConfigValues(); 68 68 }
Note: See TracChangeset
for help on using the changeset viewer.