diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/hippolimits.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linden/indra/newview/hippolimits.cpp b/linden/indra/newview/hippolimits.cpp index 2990a45..2c581ae 100644 --- a/linden/indra/newview/hippolimits.cpp +++ b/linden/indra/newview/hippolimits.cpp | |||
@@ -24,7 +24,8 @@ HippoLimits::HippoLimits() | |||
24 | mMaxPrimScale(256.0f), | 24 | mMaxPrimScale(256.0f), |
25 | mMaxLinkedPrims(-1), | 25 | mMaxLinkedPrims(-1), |
26 | mMaxDragDistance(0.f), | 26 | mMaxDragDistance(0.f), |
27 | mVoiceConnector("SLVoice") | 27 | mVoiceConnector("SLVoice"), |
28 | mMaxSelectDistance(64.0f) | ||
28 | { | 29 | { |
29 | setLimits(); | 30 | setLimits(); |
30 | } | 31 | } |
@@ -71,6 +72,7 @@ void HippoLimits::setOpenSimLimits() | |||
71 | mEnforceMaxBuild = FALSE; | 72 | mEnforceMaxBuild = FALSE; |
72 | mRenderWater = TRUE; | 73 | mRenderWater = TRUE; |
73 | mVoiceConnector = "SLVoice"; | 74 | mVoiceConnector = "SLVoice"; |
75 | mMaxSelectDistance = 192.0f; | ||
74 | 76 | ||
75 | if (gHippoGridManager->getConnectedGrid()->isRenderCompat()) { | 77 | if (gHippoGridManager->getConnectedGrid()->isRenderCompat()) { |
76 | llinfos << "Using rendering compatible OpenSim limits" << llendl; | 78 | llinfos << "Using rendering compatible OpenSim limits" << llendl; |
@@ -114,6 +116,7 @@ void HippoLimits::setSecondLifeLimits() | |||
114 | mEnforceMaxBuild = FALSE; | 116 | mEnforceMaxBuild = FALSE; |
115 | mRenderWater = TRUE; | 117 | mRenderWater = TRUE; |
116 | mVoiceConnector = "SLVoice"; | 118 | mVoiceConnector = "SLVoice"; |
119 | mMaxSelectDistance = 64.0f; | ||
117 | } | 120 | } |
118 | 121 | ||
119 | void HippoLimits::setSecondLifeMaxPrimScale() | 122 | void HippoLimits::setSecondLifeMaxPrimScale() |