aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-16 05:29:38 -0700
committerChris Robinson <[email protected]>2011-06-16 05:29:38 -0700
commit8bee7a2b7f6ab60e08f2f2fc8e0dc2d39563c006 (patch)
tree4714f211365a3086805d44b2623eaa2d8b0e8a09 /Alc/ALc.c
parent632b4e6332a9fd3e7e0a47767a5620aadb1ea843 (diff)
Don't suspend individual contexts when updating
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 740d608d..46796434 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1382,7 +1382,6 @@ static ALCboolean UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
ALCcontext *context = device->Contexts[i];
ALsizei pos;
- SuspendContext(context);
for(pos = 0;pos < context->EffectSlotMap.size;pos++)
{
ALeffectslot *slot = context->EffectSlotMap.array[pos].value;
@@ -1414,7 +1413,6 @@ static ALCboolean UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
ALsource_Update(source, context);
source->NeedsUpdate = AL_FALSE;
}
- ProcessContext(context);
}
ProcessContext(NULL);