diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-06-11 16:40:53 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-06-11 16:40:53 -0700 |
commit | b912c27bf44a45e607adc3b5c94d3fd8a9bbf53e (patch) | |
tree | 6ac533504cc8ff081f6c440a30028267dbbc71d3 /indra/newview/llstartup.cpp | |
parent | a087c4dfbb0823c66f21e3587de9d57937333e32 (diff) |
PATH-711: Implementing Leo's changes for the pathfinding console.
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 0ac8c1fe39..6bee373181 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -186,6 +186,7 @@ #include "llappearancemgr.h" #include "llavatariconctrl.h" #include "llvoicechannel.h" +#include "llpathfindingmanager.h" #include "lllogin.h" #include "llevents.h" @@ -1968,6 +1969,9 @@ bool idle_startup() } } + llassert(LLPathfindingManager::getInstance() != NULL); + LLPathfindingManager::getInstance()->initSystem(); + display_startup(); //DEV-17797. get null folder. Any items found here moved to Lost and Found LLInventoryModelBackgroundFetch::instance().findLostItems(); |