diff options
author | Chris Robinson <[email protected]> | 2013-10-06 10:11:01 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-06 10:11:01 -0700 |
commit | 6425480d40e2a1b150c208db0421eabb51fe0624 (patch) | |
tree | 51e7c60d51b3a34f96f46237c6925017173cd32d /Alc/mixer.c | |
parent | 8448b94c0bf3f0ddbd040b25a68ff0ca2dcc37bd (diff) |
Don't store the effect slot in SendParams
This makes it much more like DirectParams.
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 3039f29f..5f76feaa 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -337,7 +337,7 @@ ALvoid MixSource(ALsource *Source, ALCdevice *Device, ALuint SamplesToDo) for(j = 0;j < Device->NumAuxSends;j++) { SendParams *sendparms = &Source->Params.Send[j]; - if(!sendparms->Slot) + if(!sendparms->OutBuffer) continue; DoFilter(&sendparms->LpFilter[chan], SrcData, ResampledData, |