diff options
author | Dave Parks <davep@lindenlab.com> | 2012-09-20 10:00:58 -0400 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-09-20 10:00:58 -0400 |
commit | 7fc702dc4930445b87dc2cd1d52c0cc64295f26c (patch) | |
tree | 87674607fb652ac2334023997060c842a20cb3b3 /indra/newview/llappviewer.cpp | |
parent | 60cf43bad98d620f6024c9fe3f0b48aeecad2de7 (diff) |
reapply 04fdf7945708: MAINT-775 Fix for particle index pool corruption on teleport.
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index e8934d9a9e..cb69048c60 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -89,6 +89,7 @@ #include "lllogininstance.h" #include "llprogressview.h" #include "llvocache.h" +#include "llvopartgroup.h" #include "llweb.h" #include "llsecondlifeurls.h" #include "llupdaterservice.h" @@ -679,6 +680,9 @@ bool LLAppViewer::init() // initialize SSE options LLVector4a::initClass(); + //initialize particle index pool + LLVOPartGroup::initClass(); + // Need to do this initialization before we do anything else, since anything // that touches files should really go through the lldir API gDirUtilp->initAppDirs("SecondLife"); |