diff options
-rw-r--r-- | Alc/effects/reverb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index 7bbdb8a7..995ad6a5 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -364,7 +364,7 @@ static ALboolean ALreverbState_deviceUpdate(ALreverbState *State, ALCdevice *Dev if(!AllocLines(frequency, State)) return AL_FALSE; - State->ExtraChannels = (Device->Hrtf ? 2 : 0); + State->ExtraChannels = (Device->Hrtf || Device->Uhj_Encoder) ? 2 : 0; // Calculate the modulation filter coefficient. Notice that the exponent // is calculated given the current sample rate. This ensures that the |