diff options
| author | Graham Linden <graham@lindenlab.com> | 2019-07-24 13:45:03 -0700 | 
|---|---|---|
| committer | Graham Linden <graham@lindenlab.com> | 2019-07-24 13:45:03 -0700 | 
| commit | 53b71f0dc3d8a947225c2ca2ecf22b30fb7667d2 (patch) | |
| tree | 7a6b348c26ec43f2317dc610f2619b57f0153044 | |
| parent | 41ede77744489c2a2d32849ea457bcbea516a588 (diff) | |
SL-11600
Make default direction when neither sun nor moon are up straight down instead of noon.
| -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 75b4415086..434270d178 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;  }  LLColor3 LLSettingsSky::getLightDiffuse() const | 
