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:
authordecoda <rajakedia2222@gmail.com>2017-06-22 23:19:30 +0300
committerdecoda <rajakedia2222@gmail.com>2017-06-22 23:19:30 +0300
commit1132d6023491301ec649c5d0b5bf3ee2d3491361 (patch)
treefb44623dc09fa04155833edfcb0b31b17b129c06
parent1af5ea2f882af4f7d9f1a20676082fb8be2c6113 (diff)
Edited minor bug!
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 95b85247f3b..e3e63a98724 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -3342,7 +3342,7 @@ static void topo_init_task_cb(void *userdata, const int n) {
BKE_pbvh_vertex_iter_begin(ss->pbvh, data->nodes[n], vd, PBVH_ITER_UNIQUE) {
sculpt_orig_vert_data_update(&orig_data, &vd);
- if (sculpt_brush_topo_test(&test, orig_data.co, orig_data.no)) {
+ if (sculpt_brush_topo_test(&test, orig_data.co)) {
float *co;
co = vd.co;
v_index[it + count[0]] = vd.vert_indices[vd.i];