- Timestamp:
- Aug 24, 2005, 2:03:23 AM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/defs/class_id.h
r5068 r5117 108 108 CL_STATE = 0x00000f13, 109 109 CL_FRAMEWORK = 0x00000f14, 110 CL_RENDER_2D = 0x00000f15, 110 CL_RENDER_2D = 0x00000f21, 111 CL_NULL_ELEMENT_2D = 0x00000f22, 111 112 112 113 -
trunk/src/lib/graphics/render2D/element_2d.cc
r5115 r5117 825 825 NullElement2D::NullElement2D () : Element2D(NULL) 826 826 { 827 this->setClassID(CL_NULL_ PARENT, "NullElement2D");827 this->setClassID(CL_NULL_ELEMENT_2D, "NullElement2D"); 828 828 this->setName("NullElement2D"); 829 829 -
trunk/src/lib/graphics/render2D/render_2d.cc
r5115 r5117 54 54 delete this->element2DList[i]; 55 55 56 delete NullElement2D::getInstance(); 56 57 Render2D::singletonRef = NULL; 57 58 } -
trunk/src/story_entities/world.cc
r5115 r5117 140 140 141 141 // unload the resources !! 142 //ResourceManager::getInstance()->unload(this->music);142 ResourceManager::getInstance()->unload(this->music); 143 143 ResourceManager::getInstance()->unloadAllByPriority(RP_LEVEL); 144 144 }
Note: See TracChangeset
for help on using the changeset viewer.