diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2024-07-16 14:14:36 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2024-07-16 18:27:03 +0200 |
commit | b05ab692ba60438e3900b351d654bc0124a42f50 (patch) | |
tree | 36af0ffd512e44f31960084e7633a6eccebf220e /indra/newview/pipeline.cpp | |
parent | 631379cbc0a3a48bc578ce2e2d9ccef31c8cfc23 (diff) |
#2039 BugSplat Crash #1494687: LLPipeline::calcNearbyLights(LLCamera&)
Diffstat (limited to 'indra/newview/pipeline.cpp')
-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 16d66123ae..6cf7d9f51c 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -5287,7 +5287,7 @@ void LLPipeline::calcNearbyLights(LLCamera& camera) LL_PROFILE_ZONE_SCOPED_CATEGORY_DRAWPOOL; assertInitialized(); - if (LLPipeline::sReflectionRender || gCubeSnapshot || LLPipeline::sRenderingHUDs) + if (LLPipeline::sReflectionRender || gCubeSnapshot || LLPipeline::sRenderingHUDs || LLApp::isExiting()) { return; } |