Changeset 7249 in orxonox.OLD for branches/preferences/src
- Timestamp:
- Mar 24, 2006, 7:09:08 PM (19 years ago)
- Location:
- branches/preferences/src/lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/preferences/src/lib/event/key_mapper.cc
r7248 r7249 186 186 for ( std::list<std::string>::const_iterator it = keys.begin(); it!=keys.end(); it++ ) 187 187 { 188 PRINTF( 0)("Keys: Parsing %s, %s now.\n", it->c_str(), Preferences::getInstance()->getString(CONFIG_SECTION_PLAYER "1", *it, "").c_str());188 PRINTF(3)("Keys: Parsing %s, %s now.\n", it->c_str(), Preferences::getInstance()->getString(CONFIG_SECTION_PLAYER "1", *it, "").c_str()); 189 189 // map the name to an sdl index 190 190 index = nameToIndex (Preferences::getInstance()->getString(CONFIG_SECTION_PLAYER "1", *it, "")); -
branches/preferences/src/lib/graphics/graphics_engine.cc
r7247 r7249 29 29 #include "debug.h" 30 30 31 #include "parser/ini_parser/ini_parser.h"32 31 #include "util/preferences.h" 33 32 #include "substring.h" … … 151 150 /** 152 151 * loads the GraphicsEngine's settings from a given ini-file and section 153 * @param iniParser the iniParser to load from154 * @param section the Section in the ini-file to load from155 152 * @returns nothing usefull 156 153 */ -
branches/preferences/src/lib/graphics/graphics_engine.h
r7247 r7249 20 20 // Forward Declaration 21 21 class Text; 22 class IniParser;23 22 class WorldEntity; 24 23 class GraphicsEffect; -
branches/preferences/src/lib/sound/sound_engine.cc
r7247 r7249 95 95 /** 96 96 * loads the settings of the SoundEngine from an ini-file 97 * @param iniParser the IniParser of the inifile98 97 */ 99 98 void SoundEngine::loadSettings()
Note: See TracChangeset
for help on using the changeset viewer.