summaryrefslogtreecommitdiff
path: root/indra/llappearance
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2012-09-26 11:52:19 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2012-09-26 11:52:19 -0400
commitab83fab72c66e753917001a9030aa55e69a3c496 (patch)
treed71c42801e3083b316986c8005cf69a331bf558a /indra/llappearance
parent04b0862b3b53ef57801b779c51e6b8fe1c442008 (diff)
error checking, comments for areas needing fix/check in appearance
Diffstat (limited to 'indra/llappearance')
-rwxr-xr-xindra/llappearance/lldriverparam.cpp2
-rwxr-xr-x[-rw-r--r--]indra/llappearance/lltexlayerparams.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/indra/llappearance/lldriverparam.cpp b/indra/llappearance/lldriverparam.cpp
index ec282c50eb..a43878899c 100755
--- a/indra/llappearance/lldriverparam.cpp
+++ b/indra/llappearance/lldriverparam.cpp
@@ -187,7 +187,7 @@ BOOL LLDriverParam::setInfo(LLDriverParamInfo *info)
{
llassert(wearable);
LLDriverParam *new_param = new LLDriverParam(mAvatarAppearance, wearable);
- // FIXME this clobbers mWearablep, which means any code currently using mWearablep is wrong.
+ // FIXME DRANO this clobbers mWearablep, which means any code currently using mWearablep is wrong.
*new_param = *this;
// new_param->mDriven.clear(); // clear driven list to avoid overwriting avatar driven params from wearables.
return new_param;
diff --git a/indra/llappearance/lltexlayerparams.cpp b/indra/llappearance/lltexlayerparams.cpp
index 651468b1a5..18e70af23c 100644..100755
--- a/indra/llappearance/lltexlayerparams.cpp
+++ b/indra/llappearance/lltexlayerparams.cpp
@@ -176,6 +176,7 @@ void LLTexLayerParamAlpha::setWeight(F32 weight, BOOL upload_bake)
if ((mAvatarAppearance->getSex() & getSex()) && (mAvatarAppearance->isSelf() && !mIsDummy)) // only trigger a baked texture update if we're changing a wearable's visual param.
{
+ // FIXME DRANO - is this check right?
if (!mAvatarAppearance->isUsingServerBakes())
{
upload_bake = FALSE;