diff options
author | Chris Robinson <[email protected]> | 2019-01-09 18:29:22 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-01-09 18:29:22 -0800 |
commit | e7d77f5caa424597ab8023f92f00bfa50f8b78f8 (patch) | |
tree | c6a4796a02dd0e3349ab697f108335ce22794a47 /OpenAL32/Include/alAuxEffectSlot.h | |
parent | 30184613a53c9eb013fee10403aa9cd97d4ea5e1 (diff) |
Use a vector for ALeffectslotArray
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index d970444c..cf4cd5d0 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -44,10 +44,7 @@ struct EffectStateFactory { #define MAX_EFFECT_CHANNELS (4) -struct ALeffectslotArray { - ALsizei count; - ALeffectslot *slot[]; -}; +using ALeffectslotArray = al::vector<ALeffectslot*>; struct ALeffectslotProps { |