From 62e19778a0e1bea24d14c9fa16f9fab2585a4b1c Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Thu, 24 Jul 2025 21:12:26 -0400 Subject: [PATCH] Renamed "All Voice Chat" to "Undeafen & Unmute" Even less confusion, All Voice Chat -> Undeafen & Unmute, moved Self-Mute to the top right above it. --- src/menus/options-voice.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/menus/options-voice.cpp b/src/menus/options-voice.cpp index c7e1c4926..4cc19c6b7 100644 --- a/src/menus/options-voice.cpp +++ b/src/menus/options-voice.cpp @@ -16,7 +16,10 @@ menuitem_t OPTIONS_Voice[] = { - {IT_STRING | IT_CVAR, "All Voice Chat", "Choose to opt-in to voice chat at all, for yourself.", + {IT_STRING | IT_CVAR, "Mute Self", "Whether your voice is transmitted or not.", + NULL, {.cvar = &cv_voice_selfmute}, 0, 0}, + + {IT_STRING | IT_CVAR, "Undeafen & Unmute", "Choose to opt-in to voice chat at all, for yourself.", NULL, {.cvar = &cv_voice_chat}, 0, 0}, {IT_STRING | IT_CVAR, "Input Mode", "When to transmit your own voice.", @@ -28,9 +31,6 @@ menuitem_t OPTIONS_Voice[] = {IT_STRING | IT_CVAR, "Input Sensitivity", "Voice higher than this threshold will transmit, in decibels.", NULL, {.cvar = &cv_voice_activationthreshold}, 0, 0}, - {IT_STRING | IT_CVAR, "Mute Self", "Whether your voice is transmitted or not.", - NULL, {.cvar = &cv_voice_selfmute}, 0, 0}, - {IT_STRING | IT_CVAR, "Voice Loopback", "Play your own voice back simultaneously.", NULL, {.cvar = &cv_voice_loopback}, 0, 0},