diff options
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index c20f3a97..b30cf666 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -1444,7 +1444,8 @@ ALAPI ALvoid ALAPIENTRY alSourcePlayv(ALsizei n, const ALuint *pSourceList) { for(j = 0;j < OUTPUTCHANNELS;j++) pSource->DryGains[j] = 0.0f; - pSource->WetGain = 0.0f; + for(j = 0;j < MAX_SENDS;j++) + pSource->WetGains[j] = 0.0f; if (pSource->state != AL_PAUSED) { |