diff options
author | Dave Parks <davep@lindenlab.com> | 2023-04-06 18:58:24 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2023-04-06 18:58:24 -0500 |
commit | b127e1bd12442953801eb6b53f052aa69d8ee580 (patch) | |
tree | cdc2031e8536d5f0d77ce1a1c0fa0800b720c16e /indra/llinventory | |
parent | bb79718c8f0050569c80a1bfe4dd428321706d1a (diff) |
SL-19538 Nudge sun brightness and replace "gamma" with an exposure scaler approximation
Diffstat (limited to 'indra/llinventory')
-rw-r--r-- | indra/llinventory/llsettingssky.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llinventory/llsettingssky.cpp b/indra/llinventory/llsettingssky.cpp index c976307936..46a48e601f 100644 --- a/indra/llinventory/llsettingssky.cpp +++ b/indra/llinventory/llsettingssky.cpp @@ -633,7 +633,7 @@ LLSettingsSky::validation_list_t LLSettingsSky::validationList() boost::bind(&Validator::verifyFloatRange, _1, _2, LLSD(LLSDArray(0.0f)(1.0f))))); validation.push_back(Validator(SETTING_REFLECTION_PROBE_AMBIANCE, false, LLSD::TypeReal, - boost::bind(&Validator::verifyFloatRange, _1, _2, LLSD(LLSDArray(0.0f)(1.0f))))); + boost::bind(&Validator::verifyFloatRange, _1, _2, LLSD(LLSDArray(0.0f)(10.0f))))); validation.push_back(Validator(SETTING_RAYLEIGH_CONFIG, true, LLSD::TypeArray, &validateRayleighLayers)); validation.push_back(Validator(SETTING_ABSORPTION_CONFIG, true, LLSD::TypeArray, &validateAbsorptionLayers)); |