diff options
author | Chris Robinson <[email protected]> | 2012-09-08 22:32:30 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-08 22:32:30 -0700 |
commit | 2bf1979d4a805e661bdd43258a5020c96cda1f80 (patch) | |
tree | 9ee8042eaa1bb7586b622a27c873a17b98d1ef68 /Alc/ALu.c | |
parent | 89cab3cd393a8fd9b3fd9e33a19103108258e938 (diff) |
Move the target effect slot to the SendParams struct
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -303,7 +303,7 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext) Slot = Device->DefaultSlot; if(Slot && Slot->effect.type == AL_EFFECT_NULL) Slot = NULL; - ALSource->Params.Slot[i] = Slot; + ALSource->Params.Send[i].Slot = Slot; ALSource->Params.Send[i].Gain = WetGain[i]; } @@ -440,7 +440,7 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext) RoomAirAbsorption[i] = AIRABSORBGAINHF; } - ALSource->Params.Slot[i] = Slot; + ALSource->Params.Send[i].Slot = Slot; } /* Transform source to listener space (convert to head relative) */ |