Changeset 6139 for code/branches/presentation2/src
- Timestamp:
- Nov 25, 2009, 12:06:15 AM (15 years ago)
- Location:
- code/branches/presentation2/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/Shell.cc
r6105 r6139 265 265 { 266 266 if (this->bPrependOutputLevel_) 267 output.insert(0, 1, static_cast<char>(level)); 267 { 268 if (level == 0) 269 output.insert(0, 1, static_cast<char>(-1)); 270 else 271 output.insert(0, 1, static_cast<char>(level)); 272 } 268 273 269 274 this->outputLines_.push_front(output); -
code/branches/presentation2/src/orxonox/overlays/InGameConsole.cc
r6135 r6139 224 224 this->consoleOverlayNoise_->setMaterialName("ConsoleNoiseSmall"); 225 225 // comment following line to disable noise 226 this->consoleOverlay Container_->addChild(this->consoleOverlayNoise_);226 this->consoleOverlayBorder_->addChild(this->consoleOverlayNoise_); 227 227 228 228 // create the text lines
Note: See TracChangeset
for help on using the changeset viewer.