diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-07-03 22:31:21 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-07-04 00:24:30 +0300 |
commit | dd4100181dec0f8ff4da23cf28c1f0295050d392 (patch) | |
tree | 887624de62958bec1fe5df1cf1fbc903528290f4 /indra/newview/llreflectionmapmanager.cpp | |
parent | f1701d3373959d023e35d39dabb2aa5ea44a3fb0 (diff) |
#4334 Crash at getIsDynamic
Diffstat (limited to 'indra/newview/llreflectionmapmanager.cpp')
-rw-r--r-- | indra/newview/llreflectionmapmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llreflectionmapmanager.cpp b/indra/newview/llreflectionmapmanager.cpp index f2abc7b8b7..3391b7adf7 100644 --- a/indra/newview/llreflectionmapmanager.cpp +++ b/indra/newview/llreflectionmapmanager.cpp @@ -1146,7 +1146,7 @@ void LLReflectionMapManager::updateUniforms() { if (refmap->mViewerObject && refmap->mViewerObject->getVolume()) { // have active manual probes live-track the object they're associated with - LLVOVolume* vobj = (LLVOVolume*)refmap->mViewerObject; + LLVOVolume* vobj = (LLVOVolume*)refmap->mViewerObject.get(); refmap->mOrigin.load3(vobj->getPositionAgent().mV); |