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:
authorCampbell Barton <ideasman42@gmail.com>2012-03-11 19:27:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-11 19:27:08 +0400
commit19400d418d4ac5e3b064dd41f825d2a257472127 (patch)
treefd343ae5b036e2fca043e578d4a5db578c2c28ec /source/blender/bmesh/intern/bmesh_mesh.c
parentfa169fdcb69ef3310b747c9433eddbc4b0435a95 (diff)
fix for debug assignment left in from own commit r44778
also removed private face normal update functions - they were same as public.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_mesh.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_mesh.c b/source/blender/bmesh/intern/bmesh_mesh.c
index 392887e3aec..c01e8afd716 100644
--- a/source/blender/bmesh/intern/bmesh_mesh.c
+++ b/source/blender/bmesh/intern/bmesh_mesh.c
@@ -228,7 +228,7 @@ void BM_mesh_normals_update(BMesh *bm, const short skip_hidden)
continue;
#endif
- bmesh_face_normal_update(bm, f, f->no);
+ BM_face_normal_update(bm, f);
}
/* Zero out vertex normals */