diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-07-19 15:19:07 -0400 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-07-19 15:19:07 -0400 | 
| commit | 8b7e33ad36bc33c2356300f8eabc8ddae578070e (patch) | |
| tree | 19643431d1e67455632a978dc12666bbc68f4267 | |
| parent | 3ce04f335e640ef9a00b00aae94ef2de841a1f7b (diff) | |
Cherry pick of https://bitbucket.org/lindenlab/mesh-development/changeset/9cea44ebea3b by don, to fix old viewer crashes in mesh regions
| -rw-r--r-- | indra/llprimitive/llprimitive.h | 1 | ||||
| -rw-r--r-- | indra/newview/llviewerobject.cpp | 4 | 
2 files changed, 5 insertions, 0 deletions
| diff --git a/indra/llprimitive/llprimitive.h b/indra/llprimitive/llprimitive.h index 76faa1b8c5..8903d8e049 100644 --- a/indra/llprimitive/llprimitive.h +++ b/indra/llprimitive/llprimitive.h @@ -103,6 +103,7 @@ public:  		PARAMS_LIGHT    = 0x20,  		PARAMS_SCULPT   = 0x30,  		PARAMS_LIGHT_IMAGE = 0x40, +		PARAMS_MESH     = 0x50,  	};  public: diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index bbe929b7f7..b5fdca632b 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -4877,6 +4877,10 @@ void LLViewerObject::adjustAudioGain(const F32 gain)  bool LLViewerObject::unpackParameterEntry(U16 param_type, LLDataPacker *dp)  { +	if (LLNetworkData::PARAMS_MESH == param_type) +	{ +		param_type = LLNetworkData::PARAMS_SCULPT; +	}  	ExtraParameter* param = getExtraParameterEntryCreate(param_type);  	if (param)  	{ | 
