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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-03-31 13:23:27 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-03-31 13:23:27 +0400
commit5e4f789173bb998f85a942a6a02cd30cb42f7660 (patch)
tree26ce40d89338ab67e0476a735e0e144aa4c81a99 /source/blender/makesrna/intern/rna_mask.c
parent851805d84e9d77108f6be6cc1bd35c6c6441068d (diff)
Code cleanup: use false/true/bool for masking
Diffstat (limited to 'source/blender/makesrna/intern/rna_mask.c')
-rw-r--r--source/blender/makesrna/intern/rna_mask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mask.c b/source/blender/makesrna/intern/rna_mask.c
index 29bc15f1dbe..eb94da6c87b 100644
--- a/source/blender/makesrna/intern/rna_mask.c
+++ b/source/blender/makesrna/intern/rna_mask.c
@@ -513,7 +513,7 @@ static void rna_MaskSpline_points_add(ID *id, MaskSpline *spline, int count)
int point_index = spline->tot_point - count + i;
MaskSplinePoint *new_point = spline->points + point_index;
new_point->bezt.h1 = new_point->bezt.h2 = HD_ALIGN;
- BKE_mask_calc_handle_point_auto(spline, new_point, TRUE);
+ BKE_mask_calc_handle_point_auto(spline, new_point, true);
BKE_mask_parent_init(&new_point->parent);
/* Not efficient, but there's no other way for now */