Changeset 5177 in orxonox.OLD for trunk/src/lib/shell/shell_buffer.cc
- Timestamp:
- Sep 12, 2005, 12:30:32 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_buffer.cc
r5176 r5177 40 40 this->bufferIterator = this->buffer->getIterator(); 41 41 42 this->setBufferSize(10 );42 this->setBufferSize(100); 43 43 } 44 44 … … 91 91 #endif 92 92 93 //vprintf(line, arguments);93 vprintf(line, arguments); 94 94 #if DEBUG < 3 95 95 else … … 195 195 delete charIterator; 196 196 } 197 198 /** 199 * displays some nice output from the Shell 200 */ 201 void ShellBuffer::debug() const 202 { 203 PRINT(3)("Debugging output to console (not this shell)\n"); 204 205 char* tmpChar = bufferIterator->firstElement(); 206 while(tmpChar != NULL) 207 { 208 printf(tmpChar); 209 tmpChar = bufferIterator->nextElement(); 210 } 211 }
Note: See TracChangeset
for help on using the changeset viewer.