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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-02-29 04:14:58 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-02-29 04:14:58 +0400
commita71128828f4d492c7f573f08c9f1ae4ab2560d71 (patch)
tree5ed6173061160175cf6f798cfa070264adfca1da /source
parent1ebb6e3360587fa673666a957538c8280b646f3c (diff)
Bugfix: vertexpaint blur brush was broken.
Just a minor loop iteration bug.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_vertex.c b/source/blender/editors/sculpt_paint/paint_vertex.c
index ba132e1ed7d..ad5aeea1b18 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex.c
+++ b/source/blender/editors/sculpt_paint/paint_vertex.c
@@ -2798,7 +2798,7 @@ static void vpaint_paint_poly(VPaint *vp, VPaintData *vpd, Object *ob,
unsigned int tcol;
char *col;
- for (j=0; j<mpoly->totloop; j += 2) {
+ for (j=0; j<mpoly->totloop; j++) {
col = (char *)(lcol + j);
blend[0] += col[0];
blend[1] += col[1];