SL-14885: Use LLCachedControl

master
Ptolemy 2021-04-30 10:56:08 -07:00
parent d1875c4932
commit 176e56d3e8
1 changed files with 2 additions and 1 deletions

View File

@ -2039,7 +2039,8 @@ LLVector3d LLAgentCamera::getFocusOffsetInitial()
F32 LLAgentCamera::getCameraMaxZoomDistance()
{
// SL-14706 / SL-14885 TPV have relaxed camera constraints allowing you to mousewheeel zoom WAY out.
if (gSavedSettings.getBOOL("DisableCameraConstraints"))
static LLCachedControl<bool> s_disable_camera_constraints(gSavedSettings, "DisableCameraConstraints", false);
if (s_disable_camera_constraints)
{
return (F32)INT_MAX;
}