Change in debug print for BKE_mask_spline_ensure_deform -- "alloc new spline" was a bit misleading,

changed with "alloc new deform spline"
This commit is contained in:
Sergey Sharybin
2012-06-01 12:34:44 +00:00
parent 54b2d1e1ff
commit 44693e709a

View File

@@ -1200,7 +1200,7 @@ void BKE_mask_spline_ensure_deform(MaskSpline *spline)
// printf("SPLINE ALLOC %p %d\n", spline->points_deform, (int)(MEM_allocN_len(spline->points_deform) / sizeof(*spline->points_deform)));
if (spline->points_deform == NULL || allocated_points != spline->tot_point) {
printf("alloc new spline\n");
printf("alloc new deform spline\n");
if (spline->points_deform) {
int i;