diff options
author | Chris Robinson <[email protected]> | 2018-11-18 02:39:27 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-18 02:39:27 -0800 |
commit | 3eededf5d64e197b1c1ed4be883efd0309ca00e0 (patch) | |
tree | c5f7266631c165309bab6825e649a8e6829d9e19 /Alc/alcontext.h | |
parent | 7b95712f38e9bc1848ab954fbaa9c393600bdb28 (diff) |
Use a normal vector for auxiliary 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 a4e397be..d0a2dc51 100644 --- a/Alc/alcontext.h +++ b/Alc/alcontext.h @@ -54,7 +54,7 @@ struct ALCcontext_struct { ALuint NumSources; almtx_t SourceLock; - vector_ALeffectslotPtr EffectSlotList; + al::vector<ALeffectslotPtr> EffectSlotList; almtx_t EffectSlotLock; ATOMIC(ALenum) LastError; |