diff options
| -rwxr-xr-x | indra/newview/llvoavatar.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index a6b3c436f4..54400c184b 100755 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -6189,9 +6189,9 @@ void LLVOAvatar::updateMeshTextures()  			// use the last-known good baked texture until it finish the first  			// render of the new layerset. -			const BOOL layerset_invalid = !mBakedTextureDatas[i].mTexLayerSet  -										  || !mBakedTextureDatas[i].mTexLayerSet->getComposite()->isInitialized() -										  || !mBakedTextureDatas[i].mTexLayerSet->isLocalTextureDataAvailable(); +			const BOOL layerset_invalid = mBakedTextureDatas[i].mTexLayerSet  +										  && ( !mBakedTextureDatas[i].mTexLayerSet->getComposite()->isInitialized() +											   || !mBakedTextureDatas[i].mTexLayerSet->isLocalTextureDataAvailable() );  			use_lkg_baked_layer[i] = (!is_layer_baked[i]   									  && (mBakedTextureDatas[i].mLastTextureIndex != IMG_DEFAULT_AVATAR)  | 
