aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-03-30 01:49:58 -0700
committerChris Robinson <[email protected]>2016-03-30 01:49:58 -0700
commitdf0d225dbffab6ee8793f8bfdeaaafea3bbf305c (patch)
treef937308f8bfbe0f3069fc027649eddd7c4df2e4b /Alc
parentb3e500be32bf65c3cdab5754e43a6ff955bed5b9 (diff)
Properly make hq-mode default to off
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 43ec7cf9..f7749367 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2122,7 +2122,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
}
if(!device->Hrtf && !device->Uhj_Encoder &&
- GetConfigValueBool(al_string_get_cstr(device->DeviceName), "decoder", "hq-mode", 1))
+ GetConfigValueBool(al_string_get_cstr(device->DeviceName), "decoder", "hq-mode", 0))
{
if(!device->AmbiDecoder)
device->AmbiDecoder = bformatdec_alloc();