Skip to content

Commit

Permalink
fix setting lfe-adjust, was before wrongly as volume-lfe in code
Browse files Browse the repository at this point in the history
  • Loading branch information
AlwinEsch committed Sep 14, 2020
1 parent 616cad4 commit b8919dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
bool CSACDSettings::Load()
{
m_volumeAdjust = kodi::GetSettingFloat("volume-adjust", 0.0f);
m_lfeAdjust = pow(10.0f, kodi::GetSettingFloat("volume-lfe", 0.0f) / 20.0f);
m_lfeAdjust = pow(10.0f, kodi::GetSettingFloat("lfe-adjust", 0.0f) / 20.0f);
m_samplerate = kodi::GetSettingInt("samplerate", 352800);
m_dsd2pcmMode = kodi::GetSettingInt("dsd2pcm-mode", 0);
m_dsd2pcmFirFile = kodi::GetSettingString("firconverter", "");
Expand Down

0 comments on commit b8919dc

Please sign in to comment.