aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 9c51aac4..df1a3ec2 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1057,13 +1057,8 @@ static ALCboolean UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
numStereo = device->NumStereoSources;
numSends = device->NumAuxSends;
- if(!ConfigValueExists(NULL, "frequency"))
- device->Flags &= ~DEVICE_FREQUENCY_REQUEST;
- else
- {
- freq = GetConfigValueInt(NULL, "frequency", SWMIXER_OUTPUT_RATE);
- if(freq < 8000) freq = 8000;
- }
+ freq = GetConfigValueInt(NULL, "frequency", freq);
+ if(freq < 8000) freq = 8000;
attrIdx = 0;
while(attrList[attrIdx])