diff options
author | Graham Linden <graham@lindenlab.com> | 2018-06-27 01:38:05 +0100 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2018-06-27 01:38:05 +0100 |
commit | c0bd1cd4321444615ae0e22b132052f8ba24ec94 (patch) | |
tree | 9fd3355d9e91348004fccb396d77107735de0ff4 /indra/newview/llvosky.cpp | |
parent | 8b1120b3eca573f07c6c0b3fffa4b138c9597194 (diff) |
Disambiguate logical op precedence for Clang.
Diffstat (limited to 'indra/newview/llvosky.cpp')
-rw-r--r-- | indra/newview/llvosky.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvosky.cpp b/indra/newview/llvosky.cpp index d8bf0181ac..00d5dfcc57 100644 --- a/indra/newview/llvosky.cpp +++ b/indra/newview/llvosky.cpp @@ -1072,7 +1072,7 @@ BOOL LLVOSky::updateSky() LLHeavenBody::setInterpVal( mInterpVal ); calcAtmospherics(); - if (!gPipeline.canUseWindLightShaders() && mForceUpdate || total_no_tiles == frame) + if (!gPipeline.canUseWindLightShaders() && (mForceUpdate || total_no_tiles == frame)) { LLSkyTex::stepCurrent(); |