diff options
author | Merov Linden <merov@lindenlab.com> | 2010-10-06 19:57:45 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2010-10-06 19:57:45 -0700 |
commit | 235980dfe3f5683c7871285888001740c1c5d66f (patch) | |
tree | f6305928a55654c9e241244c8cc340a366a9ec72 /indra | |
parent | c7b6ebaf762ba9bcdf64c6bc3b1e0fb81356c5b2 (diff) |
STORM-306 : Fix black flickering of water on Mac when atm shading off
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 272682710c..cc3fa7f254 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -4809,7 +4809,7 @@ void LLPipeline::enableLightsFullbright(const LLColor4& color) void LLPipeline::disableLights() { enableLights(0); // no lighting (full bright) - //glColor4f(1.f, 1.f, 1.f, 1.f); // lighting color = white by default + glColor4f(1.f, 1.f, 1.f, 1.f); // lighting color = white by default } //============================================================================ |