diff options
author | Chris Robinson <[email protected]> | 2011-07-16 03:02:16 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-16 03:02:16 -0700 |
commit | 3bd7256dc826f21b30e90c9d761e8d5639700afe (patch) | |
tree | 275acee6c06705b4504dfd797fc073430e6626e3 /Alc/ALc.c | |
parent | da2429a1d0ad184abe24f61aa7e064b81026651c (diff) |
Pass the effect slot to the effect update method
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1427,7 +1427,7 @@ static ALCboolean UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) return ALC_FALSE; } slot->NeedsUpdate = AL_FALSE; - ALEffect_Update(slot->EffectState, context, &slot->effect); + ALEffect_Update(slot->EffectState, context, slot); } for(pos = 0;pos < context->SourceMap.size;pos++) |