diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-08-15 06:54:30 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-08-15 06:54:30 +0800 |
commit | 207641f9859088a71f3aa1db48d2a43cb16f3b62 (patch) | |
tree | bdec1df82577a875bcb4954ca64b3e679c5ebaf9 | |
parent | 1f11febb44760758c1eff52a3acc76db2fb32299 (diff) |
One more opting out from WebRTC for FreeBSD
-rw-r--r-- | indra/newview/llvoiceclient.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index 6ff7426317..a914c4e6c9 100644 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -289,7 +289,9 @@ void LLVoiceClient::setNonSpatialVoiceModule(const std::string &voice_server_typ void LLVoiceClient::setHidden(bool hidden) { +#if !__FreeBSD__ LLWebRTCVoiceClient::getInstance()->setHidden(hidden); +#endif LLVivoxVoiceClient::getInstance()->setHidden(hidden); } |