Changeset 5417 in orxonox.OLD for trunk/src/lib/graphics/graphics_engine.cc
- Timestamp:
- Oct 21, 2005, 11:09:57 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/graphics_engine.cc
r5415 r5417 117 117 // looking if we are in fullscreen-mode 118 118 const char* fullscreen = iniParser->getVar(CONFIG_NAME_FULLSCREEN, CONFIG_SECTION_VIDEO, "0"); 119 if (strchr(fullscreen, '1') || strcasecmp(fullscreen, "true"))119 if (strchr(fullscreen, '1') || !strcasecmp(fullscreen, "true")) 120 120 this->fullscreenFlag = SDL_FULLSCREEN; 121 121 122 122 // looking if we are in fullscreen-mode 123 123 const char* textures = iniParser->getVar(CONFIG_NAME_TEXTURES, CONFIG_SECTION_VIDEO_ADVANCED, "0"); 124 if (strchr(textures, '1') || strcasecmp(textures, "true"))124 if (strchr(textures, '1') || !strcasecmp(textures, "true")) 125 125 this->texturesEnabled = true; 126 126 else … … 544 544 void GraphicsEngine::draw() const 545 545 { 546 LightManager::getInstance()->draw(); 546 547 GraphicsEngine::storeMatrices(); 547 548 Shader::suspendShader(); 549 548 550 Render2D::getInstance()->draw(E2D_LAYER_ALL); 549 551 Shader::restoreShader(); 550 LightManager::getInstance()->draw();551 552 } 552 553
Note: See TracChangeset
for help on using the changeset viewer.