aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-11-06 15:08:54 -0700
committerChris Robinson <[email protected]>2010-11-06 15:08:54 -0700
commit65e033c64b2e46d8e0082df79becad82dda3c8c9 (patch)
treedf8adea1311b533152576cf2317598b99f9dd65f /Alc/ALc.c
parent07346da740302fa0db8f756652e992f18f689f56 (diff)
Increase the max number of source sends to 4, and decrease the default to 1
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 31bb8019..f6ee75d6 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2071,7 +2071,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName)
device->NumStereoSources = 1;
device->NumMonoSources = device->MaxNoOfSources - device->NumStereoSources;
- device->NumAuxSends = GetConfigValueInt(NULL, "sends", MAX_SENDS);
+ device->NumAuxSends = GetConfigValueInt(NULL, "sends", 1);
if(device->NumAuxSends > MAX_SENDS)
device->NumAuxSends = MAX_SENDS;