diff options
author | Chris Robinson <[email protected]> | 2019-02-19 15:39:33 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-02-19 15:39:33 -0800 |
commit | 194fcb6bb7d81c5a82c9437c7ed7dfdb7da0a3e1 (patch) | |
tree | 89c0319608082ae1f676655d3169b9ca44a335e9 /Alc/effects/pshifter.cpp | |
parent | a75bc26173252b26ff2a75c5851b5399b025152a (diff) |
Rename MAX_AMBI_COEFFS and MAX_AMBI2D_COEFFS
Diffstat (limited to 'Alc/effects/pshifter.cpp')
-rw-r--r-- | Alc/effects/pshifter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/pshifter.cpp b/Alc/effects/pshifter.cpp index 9fe5f867..31d40abc 100644 --- a/Alc/effects/pshifter.cpp +++ b/Alc/effects/pshifter.cpp @@ -181,7 +181,7 @@ void ALpshifterState::update(const ALCcontext* UNUSED(context), const ALeffectsl mPitchShiftI = fastf2i(pitch*FRACTIONONE); mPitchShift = mPitchShiftI * (1.0f/FRACTIONONE); - ALfloat coeffs[MAX_AMBI_COEFFS]; + ALfloat coeffs[MAX_AMBI_CHANNELS]; CalcAngleCoeffs(0.0f, 0.0f, 0.0f, coeffs); mOutBuffer = target.Main->Buffer; |