diff options
author | Chris Robinson <[email protected]> | 2016-02-23 06:52:13 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-02-23 06:52:13 -0800 |
commit | ae1a2fa9c0948ce5dee197a11816992b8b64f7d3 (patch) | |
tree | 5dc2016bc143d6e2ec03f32f9aaac0261ce07790 /Alc | |
parent | 6512dcb23392872531886e728111b50d685cde86 (diff) |
Allow selecting a preferred HRTF in alsoft-config
This currently only checks the default paths when they're being used.
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/hrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -641,7 +641,7 @@ vector_HrtfEntry EnumerateHrtf(const_al_string devname) } } - if(VECTOR_SIZE(list) > 1 && ConfigValueStr(al_string_get_cstr(devname), NULL, "default_hrtf", &defaulthrtf)) + if(VECTOR_SIZE(list) > 1 && ConfigValueStr(al_string_get_cstr(devname), NULL, "default-hrtf", &defaulthrtf)) { const HrtfEntry *iter; /* Find the preferred HRTF and move it to the front of the list. */ |