diff options
author | Chris Robinson <[email protected]> | 2010-04-08 15:58:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-04-08 15:58:11 -0700 |
commit | aace50ebf4c97f62adceef88e42babf524ff2e28 (patch) | |
tree | f09447f00c95244b0888fc59ba007724078d6910 /Alc/alcReverb.c | |
parent | 49201e892b00b2cf7cfbce330da5d8e34ac98560 (diff) |
Store the panning LUT in the device
Diffstat (limited to 'Alc/alcReverb.c')
-rw-r--r-- | Alc/alcReverb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcReverb.c b/Alc/alcReverb.c index 86eeb71d..3529c08d 100644 --- a/Alc/alcReverb.c +++ b/Alc/alcReverb.c @@ -1131,7 +1131,7 @@ static ALvoid EAXVerbUpdate(ALeffectState *effect, ALCcontext *Context, const AL // Update early and late 3D panning. Update3DPanning(Effect->Reverb.ReflectionsPan, Effect->Reverb.LateReverbPan, - Context->PanningLUT, State); + Context->Device->PanningLUT, State); } // This processes the reverb state, given the input samples and an output |