aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llappviewer.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2009-09-04 01:56:20 -0500
committerJacek Antonelli2009-09-04 03:39:51 -0500
commit89a510de10c48ebcf82b98a962e4bf66477dcc93 (patch)
treed30f79f433badffe36a67fc155e70a0e29dd2dc4 /linden/indra/newview/llappviewer.cpp
parentBackported 1.23 fix for animation joint assertion crash. (diff)
downloadmeta-impy-89a510de10c48ebcf82b98a962e4bf66477dcc93.zip
meta-impy-89a510de10c48ebcf82b98a962e4bf66477dcc93.tar.gz
meta-impy-89a510de10c48ebcf82b98a962e4bf66477dcc93.tar.bz2
meta-impy-89a510de10c48ebcf82b98a962e4bf66477dcc93.tar.xz
Applied Kitty Barnett's RLVa 1.0.1h (Restrained Life) patch.
Made a few non-functional changes to help it apply.
Diffstat (limited to 'linden/indra/newview/llappviewer.cpp')
-rw-r--r--linden/indra/newview/llappviewer.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp
index 4d53c88..81c3f92 100644
--- a/linden/indra/newview/llappviewer.cpp
+++ b/linden/indra/newview/llappviewer.cpp
@@ -3829,4 +3829,21 @@ void LLAppViewer::handleLoginComplete()
3829 gDebugInfo["MainloopTimeoutState"] = LLAppViewer::instance()->mMainloopTimeout->getState(); 3829 gDebugInfo["MainloopTimeoutState"] = LLAppViewer::instance()->mMainloopTimeout->getState();
3830 } 3830 }
3831 writeDebugInfo(); 3831 writeDebugInfo();
3832
3833// [RLVa:KB] - Alternate: Snowglobe-1.0 | Checked: 2009-08-05 (RLVa-1.0.1e) | Modified: RLVa-1.0.1e
3834 // TODO-RLVa: find some way to initialize the lookup table when we need them *and* support toggling RLVa at runtime
3835 gRlvHandler.initLookupTables();
3836
3837 if (rlv_handler_t::isEnabled())
3838 {
3839 RlvCurrentlyWorn::fetchWorn();
3840 rlv_handler_t::fetchSharedInventory();
3841
3842 #ifdef RLV_EXTENSION_STARTLOCATION
3843 RlvSettings::updateLoginLastLocation();
3844 #endif // RLV_EXTENSION_STARTLOCATION
3845
3846 gRlvHandler.processRetainedCommands();
3847 }
3848// [/RLVa:KB]
3832} 3849}