aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
Diffstat (limited to 'linden')
-rw-r--r--linden/doc/contributions.txt38
-rw-r--r--linden/indra/newview/llappviewer.cpp5
2 files changed, 23 insertions, 20 deletions
diff --git a/linden/doc/contributions.txt b/linden/doc/contributions.txt
index 1cbc2dd..863a275 100644
--- a/linden/doc/contributions.txt
+++ b/linden/doc/contributions.txt
@@ -62,24 +62,26 @@ Aleric Inglewood
62 SNOW-766 62 SNOW-766
63 SNOW-796 63 SNOW-796
64 SNOW-800 64 SNOW-800
65 RED-429 65 IMP-429
66 RED-552 66 IMP-552
67 RED-553 67 IMP-553
68 RED-554 68 IMP-554
69 RED-556 69 IMP-556
70 RED-560 70 IMP-560
71 RED-561 71 IMP-561
72 RED-562 72 IMP-562
73 RED-565 73 IMP-565
74 RED-566 74 IMP-566
75 RED-567 75 IMP-567
76 RED-573 76 IMP-573
77 RED-575 77 IMP-575
78 RED-576 78 IMP-576
79 RED-577 79 IMP-577
80 RED-578 80 IMP-578
81 RED-579 81 IMP-579
82 RED-581 82 IMP-581
83 IMP-660
84 IMP-661
83Alissa Sabre 85Alissa Sabre
84 VWR-81 86 VWR-81
85 VWR-83 87 VWR-83
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp
index dd97cbf..4485cdf 100644
--- a/linden/indra/newview/llappviewer.cpp
+++ b/linden/indra/newview/llappviewer.cpp
@@ -440,8 +440,6 @@ static void settings_to_globals()
440 gMapScale = gSavedSettings.getF32("MapScale"); 440 gMapScale = gSavedSettings.getF32("MapScale");
441 LLHoverView::sShowHoverTips = gSavedSettings.getBOOL("ShowHoverTips"); 441 LLHoverView::sShowHoverTips = gSavedSettings.getBOOL("ShowHoverTips");
442 442
443 LLCubeMap::sUseCubeMaps = LLFeatureManager::getInstance()->isFeatureAvailable("RenderCubeMap");
444
445 LLSlider::setScrollWheelMultiplier( gSavedSettings.getS32("SliderScrollWheelMultiplier") ); 443 LLSlider::setScrollWheelMultiplier( gSavedSettings.getS32("SliderScrollWheelMultiplier") );
446 444
447 LLHUDEffectLookAt::sDebugLookAt = gSavedSettings.getBOOL("PersistShowLookAt"); 445 LLHUDEffectLookAt::sDebugLookAt = gSavedSettings.getBOOL("PersistShowLookAt");
@@ -779,6 +777,9 @@ bool LLAppViewer::init()
779 // 777 //
780 initWindow(); 778 initWindow();
781 779
780 // initWindow also initializes the Feature List, so now we can initialize this global.
781 LLCubeMap::sUseCubeMaps = LLFeatureManager::getInstance()->isFeatureAvailable("RenderCubeMap");
782
782 { 783 {
783 BOOL download = gSavedSettings.getBOOL("DownloadClientTags"); 784 BOOL download = gSavedSettings.getBOOL("DownloadClientTags");
784 785