Changeset 8308 in orxonox.OLD for branches/terrain
- Timestamp:
- Jun 10, 2006, 5:26:50 PM (18 years ago)
- Location:
- branches/terrain/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/terrain/src/lib/graphics/graphics_engine.cc
r8148 r8308 234 234 // Enable default GL stuff 235 235 glEnable(GL_DEPTH_TEST); 236 236 glEnable(GL_CULL_FACE); 237 glCullFace(GL_FRONT); 237 238 Render2D::getInstance(); 238 239 … … 287 288 SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); //Enable double buffering 288 289 289 glEnable(GL_CULL_FACE);290 glCullFace(GL_FRONT);291 290 } 292 291 -
branches/terrain/src/orxonox.cc
r8296 r8308 515 515 // checking for existence of the configuration-files, or if the lock file is still used 516 516 if (showGui || (!File("./orxonox.conf").isFile() && 517 !File(DEFAULT_CONFIG_FILE).isFile()) 518 #if DEBUG_LEVEL <= 3 // developers do not need to see the GUI, when orxonox fails 519 || ResourceManager::isFile(DEFAULT_LOCK_FILE) 520 #endif 521 ) 517 !File(DEFAULT_CONFIG_FILE).isFile() ) ) 522 518 { 523 519 File lockFile(DEFAULT_LOCK_FILE);
Note: See TracChangeset
for help on using the changeset viewer.