cellAudioOut: add stereo, 5.1 and 7.1 for covenience

This commit is contained in:
Megamouse 2022-06-02 00:58:42 +02:00
parent 94aef197dd
commit 06e5b8a06a
6 changed files with 35 additions and 5 deletions

View file

@ -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");
}