diff options
author | Chris Robinson <[email protected]> | 2011-05-07 04:35:49 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-05-07 04:35:49 -0700 |
commit | c9ac4f06ff48343526686e7828941cc1d04ba455 (patch) | |
tree | ea4b92c44bbccddcfafece7fdc3faa110e33272c /Alc/ALc.c | |
parent | 674b14faa398c7f6f9fa1ac43344ceab019df791 (diff) |
Remove an unused macro and rename another
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2306,7 +2306,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) //Set output format if(ConfigValueExists(NULL, "frequency")) device->Flags |= DEVICE_FREQUENCY_REQUEST; - device->Frequency = GetConfigValueInt(NULL, "frequency", SWMIXER_OUTPUT_RATE); + device->Frequency = GetConfigValueInt(NULL, "frequency", DEFAULT_OUTPUT_RATE); if(device->Frequency < 8000) device->Frequency = 8000; |