diff options
author | Chris Robinson <[email protected]> | 2014-11-25 17:55:17 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-11-25 17:55:17 -0800 |
commit | 0a3e11b75e0ee5e77463e62d61022a7539b5d5eb (patch) | |
tree | 1ef10757dcff13e45f2d2c169608fc6adf52686b /Alc/effects | |
parent | aa231d25a7dc3501ab82bd6da018b337e0dcc510 (diff) |
Fix reverb panning direction
Diffstat (limited to 'Alc/effects')
-rw-r--r-- | Alc/effects/reverb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index 9e338cce..896dbaef 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -1031,8 +1031,8 @@ static ALvoid UpdateEchoLine(ALfloat reverbGain, ALfloat lateGain, ALfloat echoT // Update the early and late 3D panning gains. static ALvoid Update3DPanning(const ALCdevice *Device, const ALfloat *ReflectionsPan, const ALfloat *LateReverbPan, ALfloat Gain, ALreverbState *State) { - ALfloat earlyPan[3] = { ReflectionsPan[0], ReflectionsPan[1], ReflectionsPan[2] }; - ALfloat latePan[3] = { LateReverbPan[0], LateReverbPan[1], LateReverbPan[2] }; + ALfloat earlyPan[3] = { ReflectionsPan[0], ReflectionsPan[1], -ReflectionsPan[2] }; + ALfloat latePan[3] = { LateReverbPan[0], LateReverbPan[1], -LateReverbPan[2] }; ALfloat AmbientGains[MAX_OUTPUT_CHANNELS]; ALfloat DirGains[MAX_OUTPUT_CHANNELS]; ALfloat length, invlen; |