diff options
author | Chris Robinson <[email protected]> | 2011-08-13 06:58:05 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-13 06:58:05 -0700 |
commit | b3cb511c06e669a2024025fc3b3206674c70d737 (patch) | |
tree | c419139aa0dd64ae06f753404ba39a8b15754b08 | |
parent | 7e3d02d99143ecfeb388e7b2dd305ba2e69cea56 (diff) |
Fix wet path conehf calculation
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -604,7 +604,7 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext) if(WetGainHFAuto) { for(i = 0;i < NumSends;i++) - WetGain[i] *= ConeHF; + WetGainHF[i] *= ConeHF; } // Clamp to Min/Max Gain |