diff options
author | Chris Robinson <[email protected]> | 2011-08-30 20:13:42 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-30 20:13:42 -0700 |
commit | 189add1d5a5b1f9f55fba63937f3d92cddc0cea2 (patch) | |
tree | 202a765e0355e2702d9eb9d17ee9200814bf4c21 /OpenAL32/Include/alMain.h | |
parent | 755062fb76148d740681eb33046f8f2a7729eab3 (diff) |
Use a separate array for the auxiliary slots in the mixer
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 299b16a0..fe9d3331 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -610,6 +610,10 @@ struct ALCcontext_struct ALsizei ActiveSourceCount; ALsizei MaxActiveSources; + struct ALeffectslot **ActiveEffectSlots; + ALsizei ActiveEffectSlotCount; + ALsizei MaxActiveEffectSlots; + ALCdevice *Device; const ALCchar *ExtensionList; |