diff options
author | Chris Robinson <[email protected]> | 2012-03-13 14:49:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-03-13 14:49:58 -0700 |
commit | b5ed2a5351c065fb1de5ecc52e3d981458cd2f2c (patch) | |
tree | 2f7d3e15ebb4905390a5e3e5554c8acdf8701f41 /Alc/ALc.c | |
parent | 55c5e4fe92eefc4c9208a4f6ac967247a4c4ab34 (diff) |
Pass a device to the effect update functions
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1307,7 +1307,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) return ALC_INVALID_DEVICE; } slot->NeedsUpdate = AL_FALSE; - ALeffectState_Update(slot->EffectState, context, slot); + ALeffectState_Update(slot->EffectState, device, slot); } UnlockUIntMapRead(&context->EffectSlotMap); |