diff options
author | McCabe Maxsted | 2010-10-09 03:27:47 -0700 |
---|---|---|
committer | McCabe Maxsted | 2010-10-09 03:27:47 -0700 |
commit | 1866bc2af39189c17b636970d4df7edc983c1830 (patch) | |
tree | e60963a49832280cf3d2d9b5a8b589853469caee /linden/indra/newview/llnetmap.cpp | |
parent | Use all those cores for compile (diff) | |
download | meta-impy-1866bc2af39189c17b636970d4df7edc983c1830.zip meta-impy-1866bc2af39189c17b636970d4df7edc983c1830.tar.gz meta-impy-1866bc2af39189c17b636970d4df7edc983c1830.tar.bz2 meta-impy-1866bc2af39189c17b636970d4df7edc983c1830.tar.xz |
Applied RLVa-1.1.2-Imprudence.patch by Kitty Barnett
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llnetmap.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/linden/indra/newview/llnetmap.cpp b/linden/indra/newview/llnetmap.cpp index 8a12ff3..dc4456a 100644 --- a/linden/indra/newview/llnetmap.cpp +++ b/linden/indra/newview/llnetmap.cpp | |||
@@ -73,6 +73,10 @@ | |||
73 | 73 | ||
74 | #include "hippoLimits.h" | 74 | #include "hippoLimits.h" |
75 | 75 | ||
76 | // [RLVa:KB] | ||
77 | #include "rlvhandler.h" | ||
78 | // [/RLVa:KB] | ||
79 | |||
76 | const F32 MAP_SCALE_MIN = 32; | 80 | const F32 MAP_SCALE_MIN = 32; |
77 | const F32 MAP_SCALE_MID = 1024; | 81 | const F32 MAP_SCALE_MID = 1024; |
78 | //const F32 MAP_SCALE_MAX = 4096; Now uses the max height value from hippo limits | 82 | //const F32 MAP_SCALE_MAX = 4096; Now uses the max height value from hippo limits |
@@ -640,14 +644,14 @@ BOOL LLNetMap::handleToolTip( S32 x, S32 y, std::string& msg, LLRect* sticky_rec | |||
640 | { | 644 | { |
641 | // msg.append(fullname); | 645 | // msg.append(fullname); |
642 | // [RLVa:KB] - Version: 1.23.4 | Checked: 2009-07-08 (RLVa-1.0.0e) | Modified: RLVa-0.2.0b | 646 | // [RLVa:KB] - Version: 1.23.4 | Checked: 2009-07-08 (RLVa-1.0.0e) | Modified: RLVa-0.2.0b |
643 | msg.append( (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES)) ? fullname : gRlvHandler.getAnonym(fullname) ); | 647 | msg.append( (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES)) ? fullname : RlvStrings::getAnonym(fullname) ); |
644 | // [/RLVa:KB] | 648 | // [/RLVa:KB] |
645 | msg.append("\n"); | 649 | msg.append("\n"); |
646 | } | 650 | } |
647 | 651 | ||
648 | // msg.append( region->getName() ); | 652 | // msg.append( region->getName() ); |
649 | // [RLVa:KB] - Version: 1.23.4 | Checked: 2009-07-04 (RLVa-1.0.0a) | Modified: RLVa-0.2.0b | 653 | // [RLVa:KB] - Version: 1.23.4 | Checked: 2009-07-04 (RLVa-1.0.0a) | Modified: RLVa-0.2.0b |
650 | msg.append( (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWLOC)) ? region->getName() : rlv_handler_t::cstrHidden ); | 654 | msg.append( (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWLOC)) ? region->getName() : RlvStrings::getString(RLV_STRING_HIDDEN) ); |
651 | // [/RLVa:KB] | 655 | // [/RLVa:KB] |
652 | msg.append("\n"); | 656 | msg.append("\n"); |
653 | gSavedSettings.getBOOL( "MiniMapTeleport" ) ? | 657 | gSavedSettings.getBOOL( "MiniMapTeleport" ) ? |