diff options
author | Dave Parks <davep@lindenlab.com> | 2009-11-07 08:22:39 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2009-11-07 08:22:39 -0600 |
commit | 4e420a36c67e611cd7d85652b43d9cd65315e563 (patch) | |
tree | 9d6641f03969608f29215f7a524f20f6ffc422ab /indra/newview/pipeline.cpp | |
parent | 10069e0e13e3214ba9320fdce915440b2e12f938 (diff) |
Fix for missing LOD spam.
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 3554ceb7f0..f13bb73acf 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -8949,6 +8949,7 @@ void LLPipeline::loadMesh(LLVOVolume* vobj, LLUUID mesh_id, S32 detail) group->derefLOD(lod); return; } + group->derefLOD(lod); } @@ -8962,6 +8963,7 @@ void LLPipeline::loadMesh(LLVOVolume* vobj, LLUUID mesh_id, S32 detail) group->derefLOD(lod); return; } + group->derefLOD(lod); } } |