diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-30 14:30:48 +0300 |
---|---|---|
committer | Dave Houlton <euclid@lindenlab.com> | 2020-07-09 12:19:02 -0600 |
commit | 8edcb5bf89de420ffd42a24cb1fb22c86e1c7571 (patch) | |
tree | b0c2e7d44863d212ef9ab58803f705462e0d9653 /indra/newview/llworld.cpp | |
parent | 4ba11db750b00f0af7ebbb456adc36e84925c2cc (diff) |
SL-13443 cleanup
Diffstat (limited to 'indra/newview/llworld.cpp')
-rw-r--r-- | indra/newview/llworld.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index c5dd274c33..a1a1db35d6 100644 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -1222,7 +1222,9 @@ static LLTrace::BlockTimerStatHandle FTM_DISABLE_REGION("Disable Region"); // Called in response to "DisableSimulator" message. void process_disable_simulator(LLMessageSystem *mesgsys, void **user_data) { - LL_RECORD_BLOCK_TIME(FTM_DISABLE_REGION); LLHost host = mesgsys->getSender(); + LL_RECORD_BLOCK_TIME(FTM_DISABLE_REGION); + + LLHost host = mesgsys->getSender(); //LL_INFOS() << "Disabling simulator with message from " << host << LL_ENDL; LLWorld::getInstance()->removeRegion(host); |