diff options
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 | ||||
-rw-r--r-- | OpenAL32/alSource.c | 8 |
2 files changed, 2 insertions, 8 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 09651fa5..f6a4619a 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -67,7 +67,7 @@ typedef struct ALsource ALfilter DirectFilter; struct { - ALeffectslot Slot; + ALeffectslot *Slot; ALfilter WetFilter; } Send[MAX_SENDS]; diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 85db43c2..69da0df4 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -745,13 +745,7 @@ ALAPI void ALAPIENTRY alSource3i(ALuint source, ALenum eParam, ALint lValue1, AL ALeffectslot *ALEffectSlot = (ALeffectslot*)ALTHUNK_LOOKUPENTRY(lValue1); ALfilter *ALFilter = (ALfilter*)ALTHUNK_LOOKUPENTRY(lValue3); - if(!ALEffectSlot) - { - /* Disable slot */ - pSource->Send[lValue2].Slot.effectslot = 0; - } - else - memcpy(&pSource->Send[lValue2].Slot, ALEffectSlot, sizeof(*ALEffectSlot)); + pSource->Send[lValue2].Slot = ALEffectSlot; if(!ALFilter) { |