Config: Rename MAIN_WII_SPEAK_CONNECTED to MAIN_WII_SPEAK_MUTED

This commit is contained in:
Sepalani
2024-09-01 14:00:56 +04:00
parent aea5054509
commit 61ab0faab8
10 changed files with 18 additions and 36 deletions

View File

@ -244,11 +244,11 @@ enum class BooleanSetting(
"EmulateWiiSpeak",
false
),
MAIN_WII_SPEAK_CONNECTED(
MAIN_WII_SPEAK_MUTED(
Settings.FILE_DOLPHIN,
Settings.SECTION_EMULATED_USB_DEVICES,
"WiiSpeakConnected",
false
"WiiSpeakMuted",
true
),
MAIN_SHOW_GAME_TITLES(
Settings.FILE_DOLPHIN,

View File

@ -905,10 +905,10 @@ class SettingsFragmentPresenter(
)
)
sl.add(
InvertedSwitchSetting(
SwitchSetting(
context,
BooleanSetting.MAIN_WII_SPEAK_CONNECTED,
R.string.disconnect_wii_speak,
BooleanSetting.MAIN_WII_SPEAK_MUTED,
R.string.mute_wii_speak,
0
)
)

View File

@ -945,7 +945,7 @@ It can efficiently compress both junk data and encrypted Wii data.
<string name="select_compatible_figure">Please select a compatible figure file</string>
<string name="emulate_wii_speak">Wii Speak</string>
<string name="disconnect_wii_speak">Mute Wii Speak</string>
<string name="mute_wii_speak">Mute Wii Speak</string>
<string name="wii_speak_permission_warning">Missing Microphone Permission</string>
<string name="wii_speak_permission_warning_description">Wii Speak emulation requires microphone permission. You might need to restart the game for the permission to be effective.</string>
</resources>