Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2006-04-02 15:48:22 +0400
committerTon Roosendaal <ton@blender.org>2006-04-02 15:48:22 +0400
commit546cf1d5ba3e7cc56e9d8600bb933b125fdbc302 (patch)
treec0c1aa605160c594ca3924d1601a3f6cbfc692a4 /source/blender/src/editmesh.c
parent3be5302e40fd837517d6721b76cb8a9264402ee8 (diff)
Bugfix #4051
- particle duplicators should not include parent animation (error in duplicator recode of last december) - added exception for 'died' particles to keep correct orientation Also in this commit: - added comment in code to explain why vertexnormals in mesh are equal to vertex location when no faces exist - cleanup of BKE_object.h for functions that don't need export.
Diffstat (limited to 'source/blender/src/editmesh.c')
-rw-r--r--source/blender/src/editmesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index f5b9be06bd7..b3c89690bb1 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -1631,7 +1631,7 @@ static void *editMesh_to_undoMesh(void)
EditFaceC *efac=NULL;
EditSelectionC *esec=NULL;
TFace *tface= NULL;
- int i, a;
+ int a;
um= MEM_callocN(sizeof(UndoMesh), "undomesh");