Only initialize the default reverb effect when a slot is available

This commit is contained in:
Chris Robinson
2012-01-29 22:49:17 -08:00
parent ed037698fd
commit 4393b6b05f
+2 -1
View File
@@ -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);