[Bf-blender-cvs] [ed8c169] shapekeys-normals: Fix stupid mistake...

Bastien Montagne noreply at git.blender.org
Mon Oct 12 10:36:47 CEST 2015


Commit: ed8c1694d58ac1d67a28efe20a0dafb9f961587d
Author: Bastien Montagne
Date:   Mon Oct 12 10:23:14 2015 +0200
Branches: shapekeys-normals
https://developer.blender.org/rBed8c1694d58ac1d67a28efe20a0dafb9f961587d

Fix stupid mistake...

===================================================================

M	source/blender/makesrna/intern/rna_key.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c
index b352f24..b567e0f 100644
--- a/source/blender/makesrna/intern/rna_key.c
+++ b/source/blender/makesrna/intern/rna_key.c
@@ -206,7 +206,7 @@ static void rna_KeyBlock_normals_vert_calc(ID *id, KeyBlock *data, int *normals_
 
 	*normals = MEM_mallocN(sizeof(**normals) * (size_t)(*normals_len), __func__);
 
-	BKE_keyblock_mesh_calc_normals(data, me, NULL, NULL, (float (*)[3])(*normals));
+	BKE_keyblock_mesh_calc_normals(data, me, (float (*)[3])(*normals), NULL, NULL);
 }
 
 static int rna_KeyBlock_normals_poly_len(PointerRNA *ptr, int length[RNA_MAX_ARRAY_DIMENSION])




More information about the Bf-blender-cvs mailing list