diff options
author | Chris Robinson <[email protected]> | 2016-02-09 21:42:24 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-02-09 21:42:24 -0800 |
commit | a9135ec39d8722502e92fc5141661c3479d877d9 (patch) | |
tree | e68ddda3d97dca362acb217efb89c606ca40cc79 /Alc/panning.c | |
parent | 000ced37951795d4ded85b37a5337dbfdee90be1 (diff) |
Don't pass the channel count to GetBFormatHrtfCoeffs
Since it's hard-coded anyway, there's no need to specify it.
Diffstat (limited to 'Alc/panning.c')
-rw-r--r-- | Alc/panning.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/panning.c b/Alc/panning.c index 8464efd6..5013ec16 100644 --- a/Alc/panning.c +++ b/Alc/panning.c @@ -505,7 +505,7 @@ ALvoid aluInitPanning(ALCdevice *device) coeffs_list[i] = device->Hrtf_Params[chan].Coeffs; delay_list[i] = device->Hrtf_Params[chan].Delay; } - GetBFormatHrtfCoeffs(device->Hrtf, 4, coeffs_list, delay_list); + GetBFormatHrtfCoeffs(device->Hrtf, coeffs_list, delay_list); return; } |