diff options
author | Chris Robinson <[email protected]> | 2018-09-19 22:18:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-09-19 22:18:46 -0700 |
commit | 5c6b8eda4f4defc85faf76edb2772f6b340c7c1a (patch) | |
tree | f5110aed671ade8156448b4e84613f8aa4b0185d /Alc/effects/pshifter.c | |
parent | ea95a8adef036602770546fb14bcaf713ec40b8b (diff) |
Remove another duplicate function
Diffstat (limited to 'Alc/effects/pshifter.c')
-rw-r--r-- | Alc/effects/pshifter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/pshifter.c b/Alc/effects/pshifter.c index f27c413c..ed18e9a8 100644 --- a/Alc/effects/pshifter.c +++ b/Alc/effects/pshifter.c @@ -208,7 +208,7 @@ static ALvoid ALpshifterState_update(ALpshifterState *state, const ALCcontext *c state->PitchShift = state->PitchShiftI * (1.0f/FRACTIONONE); CalcAngleCoeffs(0.0f, 0.0f, 0.0f, coeffs); - ComputeDryPanGains(&device->Dry, coeffs, slot->Params.Gain, state->TargetGains); + ComputePanGains(&device->Dry, coeffs, slot->Params.Gain, state->TargetGains); } static ALvoid ALpshifterState_process(ALpshifterState *state, ALsizei SamplesToDo, const ALfloat (*restrict SamplesIn)[BUFFERSIZE], ALfloat (*restrict SamplesOut)[BUFFERSIZE], ALsizei NumChannels) |