diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp index de443199f276476d337f2bccd94b11cf0362bb46..bc90921340ae3566523a355d301307fbbe2b75b1 100644 --- a/indra/llmath/llvolume.cpp +++ b/indra/llmath/llvolume.cpp @@ -5542,7 +5542,7 @@ struct MikktData void SetTangentSpace(const uint32_t face_num, const uint32_t vert_num, mikk::float3 T, bool orientation) { S32 i = face_num * 3 + vert_num; - t_data[i].set(T.x, T.y, T.z, orientation ? 1.0f : -1.0f); + t[i].set(T.x, T.y, T.z, orientation ? 1.0f : -1.0f); } };