aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-06-06 00:53:29 -0700
committerChris Robinson <[email protected]>2010-06-06 00:53:29 -0700
commitce0727097391ea32eefe5cac592b1ca8a2a2c397 (patch)
treee83c9347f8514e93cd3ea516ea1145cb18625f9a /Alc
parentac05863f729d46e6173724a3464f81aafc1b3d1e (diff)
Remove support for the old 'refresh' config option
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index d4c1ad9f..a1aca654 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1997,12 +1997,9 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName)
if(device->NumUpdates < 2)
device->NumUpdates = 4;
- i = GetConfigValueInt(NULL, "refresh", 4096);
- if(i <= 0) i = 4096;
-
- device->UpdateSize = GetConfigValueInt(NULL, "period_size", i/device->NumUpdates);
+ device->UpdateSize = GetConfigValueInt(NULL, "period_size", 1024);
if(device->UpdateSize <= 0)
- device->UpdateSize = i/device->NumUpdates;
+ device->UpdateSize = 1024;
device->MaxNoOfSources = GetConfigValueInt(NULL, "sources", 256);
if((ALint)device->MaxNoOfSources <= 0)