diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2017-05-02 14:39:59 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2017-05-02 14:39:59 -0400 |
commit | e4996c5d8182a0ef24f0eb445db82121fe5733d7 (patch) | |
tree | 84a1c2b9c1f8b0cae667a6c0c8458c19c921a0b8 /indra/newview/llappviewer.cpp | |
parent | 2bb19aec989d5964b22f64cc01aa7cbe962e1e6b (diff) |
DRTVWR-418, MAINT-6996: clarify divide-by-1024 (not shift-right 10)
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index e4b2c7ad77..d41f33700f 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3745,7 +3745,7 @@ void LLAppViewer::handleViewerCrash() } gDebugInfo["Dynamic"]["SessionLength"] = F32(LLFrameTimer::getElapsedSeconds()); - gDebugInfo["Dynamic"]["RAMInfo"]["Allocated"] = LLSD::Integer(LLMemory::getCurrentRSS() >> 10); + gDebugInfo["Dynamic"]["RAMInfo"]["Allocated"] = LLSD::Integer(LLMemory::getCurrentRSS() / 1024); if(gLogoutInProgress) { |