Skip to content

Commit 4548b08

Browse files
committed
fix: MM-EQ on/off accidentally swapped
1 parent f3de5f0 commit 4548b08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/audio/base/DspHost.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -594,9 +594,9 @@ bool DspHost::update(DspConfig *config, bool ignoreCache)
594594
break;
595595
case DspConfig::tone_enable:
596596
if(current.toBool())
597-
MultimodalEqualizerDisable(cast(this->_dsp));
598-
else
599597
MultimodalEqualizerEnable(cast(this->_dsp), 1);
598+
else
599+
MultimodalEqualizerDisable(cast(this->_dsp));
600600
break;
601601
case DspConfig::tone_eq:
602602
case DspConfig::tone_filtertype:

0 commit comments

Comments
 (0)