Skip to content

Commit

Permalink
Following [98a196], fix same logic error used in the settings which p…
Browse files Browse the repository at this point in the history
…revented selecting 7.1 unless audio advanced was selected
  • Loading branch information
jyavenard committed Dec 7, 2010
1 parent 98a1969 commit f1b4edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -311,7 +311,7 @@ void AudioConfigSettings::UpdateCapabilities(const QString &device)
m_DTSPassThrough->boolValue();
bool bLPCM = settings.canPassthrough() == -1 ||
(settings.canLPCM() &&
m_AdvancedAudioSettings->boolValue() && !m_MPCM->boolValue());
!(m_AdvancedAudioSettings->boolValue() && m_MPCM->boolValue()));

if (max_speakers > 2 && !bLPCM)
max_speakers = 2;
Expand Down

0 comments on commit f1b4edc

Please sign in to comment.