From 5e4f789173bb998f85a942a6a02cd30cb42f7660 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 31 Mar 2014 15:23:27 +0600 Subject: Code cleanup: use false/true/bool for masking --- source/blender/makesrna/intern/rna_mask.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_mask.c') 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 */ -- cgit v1.2.3