diff options
author | Chris Robinson <[email protected]> | 2019-01-11 07:28:44 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-01-11 07:28:44 -0800 |
commit | 81e7222633fefd29890e8f1e18af86c4985604f4 (patch) | |
tree | 33271bf0aae1c7acfac1cadb5139e8f87a976fd6 /Alc/alcontext.h | |
parent | 8aedaea5fb92d9cfed0a3e1f959f903fca713ec3 (diff) |
Use a flexible array for the active effect slots
Diffstat (limited to 'Alc/alcontext.h')
-rw-r--r-- | Alc/alcontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcontext.h b/Alc/alcontext.h index dc9ada55..472d06ae 100644 --- a/Alc/alcontext.h +++ b/Alc/alcontext.h @@ -107,7 +107,7 @@ struct ALCcontext { std::atomic<ALsizei> VoiceCount{0}; ALsizei MaxVoices{0}; - using ALeffectslotArray = al::vector<ALeffectslot*>; + using ALeffectslotArray = al::FlexArray<ALeffectslot*>; std::atomic<ALeffectslotArray*> ActiveAuxSlots{nullptr}; std::thread EventThread; |