From 92d94ccb084df36ab7fd39f0258a7189356d9966 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 10 Sep 2013 19:23:39 +0000 Subject: misc minor changes - make cmake osx use of -ftemplate-depth match scons. - use array size within sizeof(), more compact. - replace AT with __func__ where the function is unique enough. - BLI_box_pack_2D -> 2d to match other functions. - rename new mesh normal calculation to mesh.calc_normals_split() --- source/blender/editors/uvedit/uvedit_parametrizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/uvedit') diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c index 7851eebe269..b6fe60a8db7 100644 --- a/source/blender/editors/uvedit/uvedit_parametrizer.c +++ b/source/blender/editors/uvedit/uvedit_parametrizer.c @@ -4513,7 +4513,7 @@ void param_pack(ParamHandle *handle, float margin) } } - BLI_box_pack_2D(boxarray, phandle->ncharts - unpacked, &tot_width, &tot_height); + BLI_box_pack_2d(boxarray, phandle->ncharts - unpacked, &tot_width, &tot_height); if (tot_height > tot_width) scale = 1.0f / tot_height; -- cgit v1.2.3