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>2009-10-14 14:33:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-10-14 14:33:27 +0400
commit0b1957793052e4b3b3d195a1562c8ff7706074e4 (patch)
treee7de5fda31d3fcaa64055854dcba879952d8cc31 /source/blender/editors/armature
parentd38940676685912b426cb32ae40c25a9960af242 (diff)
skin/loft was broken, was passing short[2] as float[2]
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/editarmature_sketch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/editarmature_sketch.c b/source/blender/editors/armature/editarmature_sketch.c
index ce328ea8a82..b3dd8f35137 100644
--- a/source/blender/editors/armature/editarmature_sketch.c
+++ b/source/blender/editors/armature/editarmature_sketch.c
@@ -1083,7 +1083,7 @@ int sk_getStrokeSnapPoint(bContext *C, SK_Point *pt, SK_Sketch *sketch, SK_Strok
mvalf[0]= dd->mval[0];
mvalf[1]= dd->mval[1];
- peelObjectsContext(C, &sketch->depth_peels, dd->mval);
+ peelObjectsContext(C, &sketch->depth_peels, mvalf);
if (stk->nb_points > 0 && stk->points[stk->nb_points - 1].type == PT_CONTINUOUS)
{