aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-07-13 23:13:02 -0700
committerChris Robinson <[email protected]>2017-07-13 23:13:02 -0700
commit8fa3f6da64c4cf18b5ea19fd28fada10ed275da9 (patch)
treee845a1586189b468e4c8011a63765eb48830a3b2 /Alc/ALc.c
parent249afde5f9363384649fc3993bde9dc26c75df4c (diff)
Add the default auxiliary slot to the active slot array
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index ece66273..ccad718b 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2549,8 +2549,17 @@ static ALvoid InitContext(ALCcontext *Context)
InitUIntMap(&Context->SourceMap, Context->Device->SourcesMax);
InitUIntMap(&Context->EffectSlotMap, Context->Device->AuxiliaryEffectSlotMax);
- auxslots = al_calloc(DEF_ALIGN, sizeof(struct ALeffectslotArray));
- auxslots->count = 0;
+ if(Context->DefaultSlot)
+ {
+ auxslots = al_calloc(DEF_ALIGN, FAM_SIZE(struct ALeffectslotArray, slot, 1));
+ auxslots->count = 1;
+ auxslots->slot[0] = Context->DefaultSlot;
+ }
+ else
+ {
+ auxslots = al_calloc(DEF_ALIGN, sizeof(struct ALeffectslotArray));
+ auxslots->count = 0;
+ }
ATOMIC_INIT(&Context->ActiveAuxSlots, auxslots);
//Set globals