Changeset 5075 in orxonox.OLD for trunk/src/lib/graphics
- Timestamp:
- Aug 19, 2005, 3:21:27 AM (19 years ago)
- Location:
- trunk/src/lib/graphics
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/md2Model.cc
r4836 r5075 18 18 #include "material.h" 19 19 20 #include "debug.h" 20 21 #include "resource_manager.h" 21 22 … … 84 85 if( unlikely(this->data == NULL)) 85 86 PRINTF(0)("The model was not found, MD2Model Loader finished abnormaly. Update the data-repos\n"); 86 87 87 88 this->scaleFactor = this->data->scaleFactor; 88 89 this->setAnim(BOOM); … … 381 382 */ 382 383 383 384 384 385 385 386 -
trunk/src/lib/graphics/spatial_separation/quadtree.cc
r4968 r5075 22 22 23 23 #include "material.h" 24 24 #include "debug.h" 25 25 26 26 using namespace std; -
trunk/src/lib/graphics/spatial_separation/quadtree_node.cc
r4968 r5075 23 23 #include "list.h" 24 24 #include "vector.h" 25 #include "debug.h" 25 26 26 27 using namespace std; -
trunk/src/lib/graphics/spatial_separation/spatial_separation.cc
r4968 r5075 17 17 18 18 #include "spatial_separation.h" 19 19 20 #include "abstract_model.h" 20 21 #include "quadtree.h" 22 #include "debug.h" 21 23 22 24 using namespace std; -
trunk/src/lib/graphics/text_engine.cc
r5072 r5075 103 103 { 104 104 this->text = new char[1]; 105 strcpy(this->text, "");105 *this->text = '\0'; 106 106 } 107 107 108 108 109 109 // setting up the Text-Width if DYNAMIC 110 if (this->type == TEXT_DYNAMIC )110 if (this->type == TEXT_DYNAMIC && this->alignment != TEXT_ALIGN_LEFT) 111 111 { 112 112 Glyph** glyphArray = this->font->getGlyphArray();
Note: See TracChangeset
for help on using the changeset viewer.