Changeset 8805 for code/branches/output/src/libraries/core
- Timestamp:
- Jul 31, 2011, 11:45:56 AM (13 years ago)
- Location:
- code/branches/output/src/libraries/core
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/libraries/core/GUIManager.cc
r8799 r8805 93 93 namespace orxonox 94 94 { 95 namespace context96 {97 namespace98 {99 REGISTER_OUTPUT_CONTEXT(cegui);100 }101 }102 103 95 static void key_esc() 104 96 { GUIManager::getInstance().keyESC(); } -
code/branches/output/src/libraries/core/GraphicsManager.cc
r8798 r8805 68 68 namespace orxonox 69 69 { 70 namespace context71 {72 namespace73 {74 REGISTER_OUTPUT_CONTEXT(ogre);75 }76 }77 78 70 static const std::string __CC_GraphicsManager_group = "GraphicsManager"; 79 71 static const std::string __CC_setScreenResolution_name = "setScreenResolution"; -
code/branches/output/src/libraries/core/command/IOConsolePOSIX.cc
r8803 r8805 240 240 switch (type) 241 241 { 242 case Shell::Message: 242 243 case Shell::DebugOutput: this->cout_ << "\033[0m"; break; 243 244 -
code/branches/output/src/libraries/core/command/IOConsoleWindows.cc
r8803 r8805 201 201 switch (type) 202 202 { 203 case Shell::Message: 203 204 case Shell::DebugOutput: colour = FOREGROUND_INTENSITY | FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE; break; 204 205 … … 249 250 || !SetConsoleMode(this->stdInHandle_, 0)) 250 251 { 251 COUT(1) << "Error: Could not set Windows console settings" << std::endl;252 orxout(user_error) << "Error: Could not set Windows console settings" << endl; 252 253 return; 253 254 } -
code/branches/output/src/libraries/core/command/Shell.h
r8803 r8805 91 91 { 92 92 DebugOutput = debug_output, 93 Message = message, 93 94 UserError = user_error, 94 95 UserWarning = user_warning,
Note: See TracChangeset
for help on using the changeset viewer.