- translation scripts now run with py3.x

- added convenience make target 'make translations'
- some MEM_malloc strings were not unique enough, expanded them.
This commit is contained in:
2011-09-20 17:07:33 +00:00
parent 9d1b4b63b3
commit 8cf8fd7326
9 changed files with 187 additions and 67 deletions

View File

@@ -2935,7 +2935,7 @@ void DM_set_object_boundbox(Object *ob, DerivedMesh *dm)
dm->getMinMax(dm, min, max);
if(!ob->bb)
ob->bb= MEM_callocN(sizeof(BoundBox), "bb");
ob->bb= MEM_callocN(sizeof(BoundBox), "DM-BoundBox");
boundbox_set_from_min_max(ob->bb, min, max);
}