cellAudio: implement downmix to 5.1

This commit is contained in:
Megamouse 2020-06-01 20:36:45 +02:00
parent 987ede2e6c
commit bb0aaea92d
13 changed files with 133 additions and 45 deletions

View file

@ -691,6 +691,15 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
case enter_button_assign::cross: return tr("Enter with cross", "Enter button assignment");
}
break;
case emu_settings_type::AudioChannels:
switch (static_cast<audio_channels>(index))
{
case audio_channels::use_application_settings: return tr("Use application settings", "Audio channels");
case audio_channels::downmix_to_stereo: return tr("Downmix to Stereo", "Audio channels");
case audio_channels::downmix_to_5_1: return tr("Downmix to 5.1", "Audio channels");
case audio_channels::surround_7_1: return tr("Surround 7.1", "Audio channels");
}
break;
default:
break;
}