Skip to content

Commit fcf4ca1

Browse files
committed
Fix case inconsistency for gain parameter in CommonAvgRef process method
1 parent b1b1c78 commit fcf4ca1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Plugins/CommonAvgRef/CommonAvgRef.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void CommonAverageRef::process (AudioBuffer<float>& buffer)
111111

112112
settings_->m_avgBuffer.applyGain (1.0f / float (numReferenceChannels));
113113

114-
const float gain = -1.0f * float ((*stream)["Gain"]) / 100.f;
114+
const float gain = -1.0f * float ((*stream)["gain"]) / 100.f;
115115

116116
for (int i = 0; i < numAffectedChannels; ++i)
117117
{

0 commit comments

Comments
 (0)