diff options
| -rw-r--r-- | indra/llprimitive/llmodel.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewerregion.cpp | 22 | 
2 files changed, 12 insertions, 12 deletions
| diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp index cee6927d20..e3b68156ca 100644 --- a/indra/llprimitive/llmodel.cpp +++ b/indra/llprimitive/llmodel.cpp @@ -2237,7 +2237,7 @@ LLSD LLModel::Decomposition::asLLSD() const  		{  			for (U32 k = 0; k < 3; k++)  			{ -				llassert(mBaseHull[j].mV[k] <= 0.501f && mBaseHull[j].mV[k] >= -0.501f); +				llassert(mBaseHull[j].mV[k] <= 0.51f && mBaseHull[j].mV[k] >= -0.51f);  				//convert to 16-bit normalized across domain  				U16 val = (U16) (((mBaseHull[j].mV[k]-min.mV[k])/range.mV[k])*65535); diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index a370e83410..1dd92cd926 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -1716,16 +1716,16 @@ std::string LLViewerRegion::getDescription() const      return stringize(*this);  } -bool LLViewerRegion::meshUploadEnabled() const
 -{
 -	return (mSimulatorFeatures.has("MeshUploadEnabled") &&
 -		mSimulatorFeatures["MeshUploadEnabled"].asBoolean());
 -}
 -
 -bool LLViewerRegion::meshRezEnabled() const
 -{
 -	return (mSimulatorFeatures.has("MeshRezEnabled") &&
 -				mSimulatorFeatures["MeshRezEnabled"].asBoolean());
 -}
 +bool LLViewerRegion::meshUploadEnabled() const +{ +	return (mSimulatorFeatures.has("MeshUploadEnabled") && +		mSimulatorFeatures["MeshUploadEnabled"].asBoolean()); +} + +bool LLViewerRegion::meshRezEnabled() const +{ +	return (mSimulatorFeatures.has("MeshRezEnabled") && +				mSimulatorFeatures["MeshRezEnabled"].asBoolean()); +} | 
