aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/oss.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-01-19 19:28:34 -0800
committerChris Robinson <[email protected]>2008-01-19 19:28:34 -0800
commit86b7b3d54b7b753148612919a17610058841ed64 (patch)
tree2582c9d49435982cdb002c4ca3949537ddeb5270 /Alc/oss.c
parent799ba1f9541c1310186805bd3e276eb9fc708ca2 (diff)
Remove duplication of setting the max source count
Diffstat (limited to 'Alc/oss.c')
-rw-r--r--Alc/oss.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Alc/oss.c b/Alc/oss.c
index 2fc7c36d..f538d4b6 100644
--- a/Alc/oss.c
+++ b/Alc/oss.c
@@ -242,8 +242,6 @@ static ALCboolean oss_open_playback(ALCdevice *device, const ALCchar *deviceName
data->data_size = device->UpdateFreq * device->FrameSize;
data->mix_data = calloc(1, data->data_size);
- device->MaxNoOfSources = 256;
-
device->ExtraData = data;
data->thread = StartThread(OSSProc, device);
if(data->thread == NULL)