diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-08-29 20:33:32 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-08-29 20:38:43 +0300 |
commit | e77eb6b5316ce68fbc8bc03c4b06fe0f13b3443d (patch) | |
tree | 2c7e729c5dc08a134f792afb043ae5a7f8cfcaef /indra/newview/pipeline.cpp | |
parent | 479fee984a595cab4fad0aae9157c5e168da692f (diff) |
#4598 Fix variables being inited before settings are ready
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 493fcd5d45..209b06fd85 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -426,6 +426,8 @@ void LLPipeline::init() sRenderAttachedLights = gSavedSettings.getBOOL("RenderAttachedLights"); sRenderAttachedParticles = gSavedSettings.getBOOL("RenderAttachedParticles"); + mReflectionMapManager.refreshSettings(); + mInitialized = true; stop_glerror(); |