mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 18:53:37 +02:00
Fixed unknow function
This commit is contained in:
parent
94edf2c900
commit
fee01f2c73
1 changed files with 3 additions and 1 deletions
|
@ -710,7 +710,9 @@ void AudioMixer::run() {
|
|||
}
|
||||
|
||||
const QString FILTER_KEY = "J-enable-filter";
|
||||
_enableFilter = audioGroupObject[FILTER_KEY].toBool(_enableFilter);
|
||||
if (audioGroupObject[FILTER_KEY].isBool()) {
|
||||
_enableFilter = audioGroupObject[FILTER_KEY].toBool();
|
||||
}
|
||||
if (_enableFilter) {
|
||||
qDebug() << "Filter enabled";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue