Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #8719 from CookiePLMonster/dolby-pro-logic-quality…
…-fixup-ii

AudioPane: Do not enable DPL II quality slider with HLE audio on init
  • Loading branch information
leoetlino committed Apr 27, 2020
2 parents 1ca682e + bb27da0 commit e6351e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/Settings/AudioPane.cpp
Expand Up @@ -234,7 +234,7 @@ void AudioPane::LoadSettings()
m_dolby_quality_slider->setValue(int(Config::Get(Config::MAIN_DPL2_QUALITY)));
m_dolby_quality_latency_label->setText(
GetDPL2ApproximateLatencyLabel(Config::Get(Config::MAIN_DPL2_QUALITY)));
if (AudioCommon::SupportsDPL2Decoder(current))
if (AudioCommon::SupportsDPL2Decoder(current) && !m_dsp_hle->isChecked())
{
EnableDolbyQualityWidgets(m_dolby_pro_logic->isChecked());
}
Expand Down

0 comments on commit e6351e1

Please sign in to comment.