aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-04-05 10:24:13 -0700
committerChris Robinson <[email protected]>2014-04-05 10:24:13 -0700
commit5e0fc84f49bb4f1491ff92ad0bc023b5b87ee934 (patch)
treed81c36651edae6aa311335efac7c061ea22a1dfa /Alc/ALu.c
parent569374da2c5f310d9309d477c24627133110dad0 (diff)
Make HRTF stepping values per-channel
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 302d387f..560c9a58 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -959,8 +959,8 @@ ALvoid CalcSourceParams(ALactivesource *src, const ALCcontext *ALContext)
src->Direct.Counter,
src->Direct.Mix.Hrtf.Params.Coeffs[0],
src->Direct.Mix.Hrtf.Params.Delay[0],
- src->Direct.Mix.Hrtf.Params.CoeffStep,
- src->Direct.Mix.Hrtf.Params.DelayStep);
+ src->Direct.Mix.Hrtf.Params.CoeffStep[0],
+ src->Direct.Mix.Hrtf.Params.DelayStep[0]);
src->Direct.Counter = counter;
src->Direct.Mix.Hrtf.Params.Gain = DryGain;
src->Direct.Mix.Hrtf.Params.Dir[0] = Position[0];