diff options
| author | Dave Parks <davep@lindenlab.com> | 2009-11-05 19:58:10 -0600 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2009-11-05 19:58:10 -0600 |
| commit | 10069e0e13e3214ba9320fdce915440b2e12f938 (patch) | |
| tree | 86a8845155728fb847efbeb3b9b03ffd3cf68763 /indra/newview/llvovolume.cpp | |
| parent | 1c495c56c1011f4514d96b75cbcfb5a8256de78f (diff) | |
Fix for prims all being 0 lod.
Fix for dangling prim references.
Diffstat (limited to 'indra/newview/llvovolume.cpp')
| -rw-r--r-- | indra/newview/llvovolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 78fd371087..7666009a62 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -919,7 +919,7 @@ BOOL LLVOVolume::setVolume(const LLVolumeParams ¶ms, const S32 detail, bool { //mesh is not loaded, request pipeline load this mesh LLUUID asset_id = volume_params.getSculptID(); - gPipeline.loadMesh(this, asset_id); + gPipeline.loadMesh(this, asset_id, detail); } else { |
