Changeset 4815 in orxonox.OLD
- Timestamp:
- Jul 7, 2005, 3:49:05 PM (19 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/obb.cc
r4814 r4815 47 47 if( this->vertices && !this->bOrigVertices) 48 48 { 49 // for(int i = 0; i < this->numOfVertices; i++)50 // delete [] this->vertices[i];51 49 delete this->vertices; 52 50 this->vertices = NULL; -
orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc
r4814 r4815 90 90 this->nodeRight = NULL; 91 91 } 92 printf("deleting nr %i obbTreeNode\n", this->getIndex());93 92 if( this->bvElement) 94 93 delete this->bvElement; -
orxonox/trunk/src/lib/lang/base_object.cc
r4778 r4815 104 104 { 105 105 // if classID is a derivable object 106 if ( likely(classID & CL_MASK_SUPER_CLASS || classID & CL_MASK_SUBSUPER_CLASS))106 if ( likely(classID & CL_MASK_SUPER_CLASS || classID & CL_MASK_SUBSUPER_CLASS)) 107 107 { 108 108 if( this->classID & classID) 109 109 return true; 110 } 111 // if classID is a LOWLEVEL-class 110 } // if classID is a LOWLEVEL-class 112 111 else 113 112 { 114 if ((this->classID & CL_MASK_LOWLEVEL_CLASS) == classID)113 if( (this->classID & CL_MASK_LOWLEVEL_CLASS) == classID) 115 114 return true; 116 115 } -
orxonox/trunk/src/lib/lang/class_list.cc
r4784 r4815 105 105 tmp->objectList->remove(objectPointer); 106 106 } 107 108 107 tmp = tmp->next; 109 108 } -
orxonox/trunk/src/orxonox.cc
r4786 r4815 41 41 #include "text_engine.h" 42 42 #include "event_handler.h" 43 #include "garbage_collector.h" 43 44 44 45 #include "state.h" … … 91 92 delete EventHandler::getInstance(); 92 93 delete Factory::getFirst(); 94 delete GameLoader::getInstance(); 93 95 delete SoundEngine::getInstance(); 94 96 delete State::getInstance(); 97 delete CDEngine::getInstance(); 98 delete GarbageCollector::getInstance(); 95 99 96 100 ClassList::debug(0);
Note: See TracChangeset
for help on using the changeset viewer.