diff options
-rw-r--r-- | indra/newview/llvoicevivox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index 6062eea68d..0b93d34b49 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -4965,8 +4965,8 @@ void LLVivoxVoiceClient::setVoiceEnabled(bool enabled) bool LLVivoxVoiceClient::voiceEnabled() { - static LLUICachedControl<bool> enable_voice("EnableVoiceChat"); - static LLUICachedControl<bool> override_disable_voice("CmdLineDisableVoice"); + static LLUICachedControl<bool> enable_voice("EnableVoiceChat", true); + static LLUICachedControl<bool> override_disable_voice("CmdLineDisableVoice", false); return enable_voice && ! override_disable_voice; } |