diff options
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 2 | ||||
-rw-r--r-- | OpenAL32/Include/alMain.h | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 6cbf0e5d..500b60a1 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -71,8 +71,6 @@ typedef struct ALeffect // Index to itself ALuint effect; - - struct ALeffect *next; } ALeffect; diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index a0251042..9b1bcca9 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -358,9 +358,8 @@ struct ALCdevice_struct // Map of Buffers for this device UIntMap BufferMap; - // Linked List of Effects for this device - struct ALeffect *EffectList; - ALuint EffectCount; + // Map of Effects for this device + UIntMap EffectMap; // Linked List of Filters for this device struct ALfilter *FilterList; |