diff options
author | Dave Houlton <euclid@lindenlab.com> | 2019-12-19 18:04:32 -0700 |
---|---|---|
committer | Dave Houlton <euclid@lindenlab.com> | 2019-12-19 18:04:32 -0700 |
commit | b3e11083cc31abfa7cebf2c3acc6aeebfc1f4205 (patch) | |
tree | 1aeaa4ab68416ff7c653616199e438b83e5c50bd /indra/llinventory | |
parent | f61a5c4642db8af5d80eacc0ca7a2062bf08e4f0 (diff) |
SL-11606 fix to match EEP light falloff vs release
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 c4ce3af157..8d0b37d01f 100644 --- a/indra/llinventory/llsettingssky.cpp +++ b/indra/llinventory/llsettingssky.cpp @@ -1000,7 +1000,7 @@ LLVector3 LLSettingsSky::getLightDirection() const return mMoonDirection; } - return -LLVector3::z_axis; + return LLVector3::z_axis_neg; } LLColor3 LLSettingsSky::getLightDiffuse() const |