diff options
author | Chris Robinson <[email protected]> | 2012-01-17 15:38:36 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-01-17 15:38:36 -0800 |
commit | 09258ca5c1e6b19392f3657b817c6328ef5b569a (patch) | |
tree | 02c2f9b80e330c70e7a8992d120fb96005b7f188 /Alc | |
parent | e0966d99a199ec1b4673609e2f91c5ebc7b776af (diff) |
Change the default output format to 32-bit float
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2440,7 +2440,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) device->Flags |= DEVICE_FREQUENCY_REQUEST; device->Frequency = maxu(device->Frequency, 8000); - fmt = "AL_FORMAT_STEREO16"; + fmt = "AL_FORMAT_STEREO32"; if(ConfigValueStr(NULL, "format", &fmt)) device->Flags |= DEVICE_CHANNELS_REQUEST; GetFormatFromString(fmt, &device->FmtChans, &device->FmtType); |