diff options
Diffstat (limited to 'indra/newview/llviewerregion.h')
-rw-r--r-- | indra/newview/llviewerregion.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llviewerregion.h b/indra/newview/llviewerregion.h index ec36c0bd0b..f2883c8f4e 100644 --- a/indra/newview/llviewerregion.h +++ b/indra/newview/llviewerregion.h @@ -242,7 +242,13 @@ public: LLStat mPacketsStat; LLStat mPacketsLostStat; + // These arrays are maintained in parallel. Ideally they'd be combined into a + // single array of an aggrigate data type but for compatibility with the old + // messaging system in which the previous message only sends and parses the + // positions stored in the first array so they're maintained separately until + // we stop supporting the old CoarseLocationUpdate message. LLDynamicArray<U32> mMapAvatars; + LLDynamicArray<LLUUID> mMapAvatarIDs; protected: // The surfaces and other layers @@ -368,3 +374,4 @@ inline BOOL LLViewerRegion::getRestrictPushObject() const #endif + |