Fix error in recent commit

Obviously a copy paste error of mine...
This commit is contained in:
Jacques Lucke 2020-07-15 18:14:03 +02:00
parent ae4098e234
commit cda6da4957
1 changed files with 3 additions and 1 deletions

View File

@ -1516,7 +1516,7 @@ static bool layerValidate_propfloat3(void *data, const uint totitems, const bool
static void layerInterp_propfloat2(
const void **sources, const float *weights, const float *sub_weights, int count, void *dest)
{
vec2f result = {0.0f, 0.0f, 0.0f};
vec2f result = {0.0f, 0.0f};
for (int i = 0; i < count; i++) {
float weight = weights ? weights[i] : 1.0f;
const vec2f *src = sources[i];
@ -1979,6 +1979,8 @@ static const char *LAYERTYPENAMES[CD_NUMTYPES] = {
"CDHairMapping",
"CDPoint",
"CDPropCol",
"CDPropFloat3",
"CDPropFloat2",
};
const CustomData_MeshMasks CD_MASK_BAREMESH = {