aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index dfdece10..acb11733 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2263,7 +2263,8 @@ ALC_API ALCcontext* ALC_APIENTRY alcCreateContext(ALCdevice *device, const ALCin
} while(!CompExchangePtr((XchgPtr*)&device->ContextList, ALContext->next, ALContext));
UnlockLists();
- InitializeEffect(ALContext, device->DefaultSlot, &ForcedEffect);
+ if(device->DefaultSlot)
+ InitializeEffect(ALContext, device->DefaultSlot, &ForcedEffect);
ALContext->LastError = AL_NO_ERROR;
ALCdevice_DecRef(device);