diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-30 14:30:48 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-06-30 14:30:48 +0300 |
commit | 3ba1b9de57b149a8c1a5f16afd8126f9c7036dc0 (patch) | |
tree | 8cc8be66ff220b606a9ae4aa1d47343d723be825 /indra/newview/llworld.cpp | |
parent | 604502b5448650cff3c1885c06b28dbd56df6817 (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); |