diff options
author | prep <prep@lindenlab.com> | 2011-03-28 13:27:50 -0400 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2011-03-28 13:27:50 -0400 |
commit | 835671f27809ce8e5ab17e6c299be35260239d51 (patch) | |
tree | 0490bce3655f947013210ef27b6aabfc873ee02a /indra | |
parent | dd475862d7953081b077e4280a6037f5c2bbc065 (diff) |
Bug fix for pelvis offset not respecting full value
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvovolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 43d8b9d356..98e5e4c6de 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -3941,7 +3941,7 @@ void LLVolumeGeometryManager::rebuildGeom(LLSpatialGroup* group) if ( bindCnt > 0 )
{
const int jointCnt = pSkinData->mJointNames.size();
- const int pelvisZOffset = pSkinData->mPelvisOffset;
+ const F32 pelvisZOffset = pSkinData->mPelvisOffset;
bool fullRig = (jointCnt>=20) ? true : false;
if ( fullRig )
{
|