Changeset 5344 in orxonox.OLD for trunk/src/lib/shell
- Timestamp:
- Oct 10, 2005, 12:39:21 AM (19 years ago)
- Location:
- trunk/src/lib/shell
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell.cc
r5335 r5344 22 22 23 23 24 #include "text _engine.h"24 #include "text.h" 25 25 #include "list.h" 26 26 #include "graphics_engine.h" … … 225 225 for (unsigned int i = 0; i < bufferDisplaySize; i++) 226 226 { 227 bufferText[i] = TextEngine::getInstance()->createText(this->fontFile, this->textSize, TEXT_RENDER_DYNAMIC);227 bufferText[i] = new Text(this->fontFile, this->textSize, TEXT_RENDER_DYNAMIC); 228 228 bufferText[i]->setColor(1, 0, 0); 229 229 bufferText[i]->setAlignment(TEXT_ALIGN_LEFT); -
trunk/src/lib/shell/shell_input.h
r5254 r5344 10 10 #define _SHELL_INPUT_H 11 11 12 #include "text _engine.h"12 #include "text.h" 13 13 #include "event_listener.h" 14 14
Note: See TracChangeset
for help on using the changeset viewer.