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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-06-07 19:35:37 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-06-07 19:36:16 +0300
commit80dcb2ced8a06caf6c47cb9c767214db33140fcb (patch)
treed7c8cc4b3c9af531c76c6245a8736590f18e9e33 /source/blender/editors/sculpt_paint/paint_vertex.c
parentd274c64d22da51473839d87618ba0dc0a0f1fa42 (diff)
Cleanup: typo, and 0 -> false for booleans.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_vertex.c')
-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 a496c4cb01d..7bbb4467f6f 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex.c
+++ b/source/blender/editors/sculpt_paint/paint_vertex.c
@@ -944,7 +944,7 @@ static void vertex_paint_init_session(Scene *scene, Object *ob)
if (ob->sculpt == NULL) {
ob->sculpt = MEM_callocN(sizeof(SculptSession), "sculpt session");
- BKE_sculpt_update_mesh_elements(scene, scene->toolsettings->sculpt, ob, 0, false);
+ BKE_sculpt_update_mesh_elements(scene, scene->toolsettings->sculpt, ob, false, false);
}
}