summaryrefslogtreecommitdiff
path: root/indra/newview/llbreastmotion.cpp
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-08-26 14:02:51 -0400
committerLoren Shih <seraph@lindenlab.com>2010-08-26 14:02:51 -0400
commita37057717d243596b92108590d56a0d3021ad840 (patch)
treea3d513b3c48371ad215cea0bd90e8197a1d72044 /indra/newview/llbreastmotion.cpp
parent63c504e4b08d28d31f7e8e2b5cda977c7b81215d (diff)
Miscellaneous fixes for how we're doing graphics settings for the avatar physics.
Fixed a cast issue that was causing a linux compile error.
Diffstat (limited to 'indra/newview/llbreastmotion.cpp')
-rw-r--r--indra/newview/llbreastmotion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llbreastmotion.cpp b/indra/newview/llbreastmotion.cpp
index 2c8a38710a..902c5af892 100644
--- a/indra/newview/llbreastmotion.cpp
+++ b/indra/newview/llbreastmotion.cpp
@@ -254,7 +254,7 @@ BOOL LLBreastMotion::onUpdate(F32 time, U8* joint_mask)
*/
mBreastMassParam = mCharacter->getVisualParamWeight("Breast_Physics_Mass");
- mBreastSmoothingParam = mCharacter->getVisualParamWeight("Breast_Physics_Smoothing");
+ mBreastSmoothingParam = (U32)(mCharacter->getVisualParamWeight("Breast_Physics_Smoothing"));
mBreastGravityParam = mCharacter->getVisualParamWeight("Breast_Physics_Gravity");
mBreastSpringParam[0] = mCharacter->getVisualParamWeight("Breast_Physics_Side_Spring");