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
path: root/source
diff options
context:
space:
mode:
authorAndrew Wiggin <ender79bl@gmail.com>2012-01-08 00:53:11 +0400
committerAndrew Wiggin <ender79bl@gmail.com>2012-01-08 00:53:11 +0400
commitcce23a732a2e92393a226e3be2cc3282db8cadb2 (patch)
tree1532ddc52cfcdf29b29e7312c7d0f92d48a23acd /source
parentbe1bc0eb98b44e51e11cb96e0290a02e167268ac (diff)
Fix broken normals with mirror modifier
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh.c b/source/blender/blenkernel/intern/mesh.c
index 414763fc964..082e8f0a676 100644
--- a/source/blender/blenkernel/intern/mesh.c
+++ b/source/blender/blenkernel/intern/mesh.c
@@ -1700,7 +1700,7 @@ void mesh_calc_normals_mapping_ex(MVert *mverts, int numVerts,
if (only_face_normals == FALSE) {
/* vertex normals are optional, they require some extra calculations,
* so make them optional */
- mesh_calc_normals(mverts, numVerts, mloop, mpolys, numLoops, numPolys, polyNors_r);
+ mesh_calc_normals(mverts, numVerts, mloop, mpolys, numLoops, numPolys, pnors);
}
else {
/* only calc poly normals */