diff options
author | David Walter Seikel | 2014-02-03 15:23:22 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-02-03 15:23:22 +1000 |
commit | d056a17f05a1f90708f554651475e116a2ddbd68 (patch) | |
tree | 07fa4f1cca2a25548b8d2d6b4752b07d8efbd2ff /linden/indra/newview/llappviewer.cpp | |
parent | Updating tree and volume LOD. These go to eleven. (diff) | |
parent | Fix up OTR prefs to not crash. (diff) | |
download | meta-impy-next.zip meta-impy-next.tar.gz meta-impy-next.tar.bz2 meta-impy-next.tar.xz |
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llappviewer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp index c30bf35..7040cd1 100644 --- a/linden/indra/newview/llappviewer.cpp +++ b/linden/indra/newview/llappviewer.cpp | |||
@@ -179,7 +179,6 @@ | |||
179 | 179 | ||
180 | #include "hippogridmanager.h" | 180 | #include "hippogridmanager.h" |
181 | #include "hippolimits.h" | 181 | #include "hippolimits.h" |
182 | #include "hippoupdate.h" | ||
183 | 182 | ||
184 | // [RLVa:KB] | 183 | // [RLVa:KB] |
185 | #include "rlvhandler.h" | 184 | #include "rlvhandler.h" |
@@ -616,6 +615,11 @@ bool LLAppViewer::init() | |||
616 | // Always add the version to the top of the log--makes debugging easier -- MC | 615 | // Always add the version to the top of the log--makes debugging easier -- MC |
617 | llinfos << ViewerInfo::prettyInfo() << llendl; | 616 | llinfos << ViewerInfo::prettyInfo() << llendl; |
618 | 617 | ||
618 | // Always fetch the Ethernet MAC address, needed both for login | ||
619 | // and password load. Need to do this before initConfiguration(), | ||
620 | // as the password loading part needs the MAC. | ||
621 | LLUUID::getNodeID(gMACAddress); | ||
622 | |||
619 | if (!initConfiguration()) | 623 | if (!initConfiguration()) |
620 | return false; | 624 | return false; |
621 | 625 | ||
@@ -748,10 +752,6 @@ bool LLAppViewer::init() | |||
748 | return false; | 752 | return false; |
749 | } | 753 | } |
750 | 754 | ||
751 | // Always fetch the Ethernet MAC address, needed both for login | ||
752 | // and password load. | ||
753 | LLUUID::getNodeID(gMACAddress); | ||
754 | |||
755 | // Prepare for out-of-memory situations, during which we will crash on | 755 | // Prepare for out-of-memory situations, during which we will crash on |
756 | // purpose and save a dump. | 756 | // purpose and save a dump. |
757 | #if LL_WINDOWS && LL_RELEASE_FOR_DOWNLOAD && LL_USE_SMARTHEAP | 757 | #if LL_WINDOWS && LL_RELEASE_FOR_DOWNLOAD && LL_USE_SMARTHEAP |