fix a debug message for audability threshold

This commit is contained in:
Stephen Birarda 2014-03-21 15:43:39 -07:00
parent 75bc640104
commit 50007d7f4b

View file

@ -415,9 +415,9 @@ void AudioMixer::run() {
}
if (hasRatioChanged) {
// set out min required loudness from the new ratio
// set out min audability threshold from the new ratio
_minAudibilityThreshold = LOUDNESS_TO_DISTANCE_RATIO / (2.0f * (1.0f - audabilityCutoffRatio));
qDebug() << "Minimum loudness required to be mixed is now" << _minAudibilityThreshold;
qDebug() << "Minimum audability required to be mixed is now" << _minAudibilityThreshold;
framesSinceCutoffEvent = 0;
}