diff options
author | Rye Cogtail <rye@lindenlab.com> | 2024-10-30 16:03:53 -0400 |
---|---|---|
committer | Rye <rye@lindenlab.com> | 2024-10-30 22:08:06 -0700 |
commit | ae5e4c30468f0712c0f8b28b7b36ada41c198c14 (patch) | |
tree | c777ad25a13b19cf403f507d7d6970a719e8ceb3 /indra/newview/llnetmap.cpp | |
parent | b44158591b06704de6506d4ec03314e93c800adb (diff) |
Fix various member variables being access before initialization
Diffstat (limited to 'indra/newview/llnetmap.cpp')
-rw-r--r-- | indra/newview/llnetmap.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llnetmap.cpp b/indra/newview/llnetmap.cpp index 483ddcdd63..bf9aa66094 100644 --- a/indra/newview/llnetmap.cpp +++ b/indra/newview/llnetmap.cpp @@ -96,6 +96,7 @@ LLNetMap::LLNetMap (const Params & p) mPopupWorldPos(0.f, 0.f, 0.f), mMouseDown(0, 0), mPanning(false), + mCentering(false), mUpdateNow(false), mObjectImageCenterGlobal( gAgentCamera.getCameraPositionGlobal() ), mObjectRawImagep(), |