diff options
author | Roxanne Skelly <roxie@lindenlab.com> | 2024-08-14 20:33:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 20:33:34 -0700 |
commit | 182f4c69c2d9c233b7ec223c3476f2e191993fad (patch) | |
tree | daa4f3a88effe4371690fc928388485b21bb5f4f /indra/newview/llvoicewebrtc.h | |
parent | 98533018a8052e30e890e87d53826e96f2b8d344 (diff) | |
parent | 3b0e2b13bf9bee2f4b3b580171b669472f86a77e (diff) |
Merge pull request #2300 from secondlife/roxie/webrtc-no-voice-dot
[WebRTC] Voice dot not always visible after crossing region boundaries.
Diffstat (limited to 'indra/newview/llvoicewebrtc.h')
-rw-r--r-- | indra/newview/llvoicewebrtc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llvoicewebrtc.h b/indra/newview/llvoicewebrtc.h index 48c50a1ea3..324b4c5b9c 100644 --- a/indra/newview/llvoicewebrtc.h +++ b/indra/newview/llvoicewebrtc.h @@ -622,7 +622,7 @@ class LLVoiceWebRTCConnection : bool connectionStateMachine(); - virtual bool isSpatial() = 0; + virtual bool isSpatial() { return false; } LLUUID getRegionID() { return mRegionID; } @@ -686,6 +686,7 @@ class LLVoiceWebRTCConnection : LLVoiceClientStatusObserver::EStatusType mCurrentStatus; LLUUID mRegionID; + bool mPrimary; LLUUID mViewerSession; std::string mChannelID; |