diff options
author | Chris Robinson <[email protected]> | 2015-02-09 05:54:14 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-02-09 05:54:14 -0800 |
commit | 61755f35c1f0b54d827ef3bfbaaab860d8459357 (patch) | |
tree | bd186ab7c9a603c44b95892f0d8ec2e347f9c41d /Alc/mixer.c | |
parent | c297b51a6ea070f16bc6044fda01da5b37aa1cbd (diff) |
Move HRTF params and state closer together
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 3e65ac72..e9ef6d79 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -468,8 +468,8 @@ ALvoid MixSource(ALvoice *voice, ALsource *Source, ALCdevice *Device, ALuint Sam parms->Counter, OutPos, DstBufferSize); else HrtfMix(parms->OutBuffer, samples, parms->Counter, voice->Offset, - OutPos, IrSize, &parms->Hrtf.Params[chan], - &parms->Hrtf.State[chan], DstBufferSize); + OutPos, IrSize, &parms->Hrtf[chan].Params, + &parms->Hrtf[chan].State, DstBufferSize); } /* Only the first channel for B-Format buffers (W channel) goes to |