diff options
author | Chris Robinson <[email protected]> | 2016-05-29 01:40:16 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-05-29 01:40:16 -0700 |
commit | 8aa4a74a7b213f2a8a3e0126a248357e587d34a8 (patch) | |
tree | bee9757b99c3f7bc6395ed59956a4ecc57f252b3 /OpenAL32/Include/alMain.h | |
parent | 4b8aa9caf11b35d0b670bdba05132357e580a71c (diff) |
Use a linked list for active effect slots
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 50162b0e..d7b54310 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -711,7 +711,7 @@ struct ALCcontext_struct { ALsizei VoiceCount; ALsizei MaxVoices; - VECTOR(struct ALeffectslot*) ActiveAuxSlots; + ATOMIC(struct ALeffectslot*) ActiveAuxSlotList; ALCdevice *Device; const ALCchar *ExtensionList; |