mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 23:11:25 +12:00
cellAudioOut: add stereo, 5.1 and 7.1 for covenience
This commit is contained in:
parent
94aef197dd
commit
06e5b8a06a
6 changed files with 35 additions and 5 deletions
|
@ -1143,6 +1143,9 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
|
|||
case emu_settings_type::AudioFormat:
|
||||
switch (static_cast<audio_format>(index))
|
||||
{
|
||||
case audio_format::stereo: return tr("Stereo", "Audio format");
|
||||
case audio_format::surround_5_1: return tr("Surround 5.1", "Audio format");
|
||||
case audio_format::surround_7_1: return tr("Surround 7.1", "Audio format");
|
||||
case audio_format::manual: return tr("Manual", "Audio format");
|
||||
case audio_format::automatic: return tr("Automatic", "Audio format");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue