aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-03 01:47:33 -0700
committerChris Robinson <[email protected]>2011-06-03 01:47:33 -0700
commit7402e3743d68555cc197ccde699e09145ed6280c (patch)
treea7a013636f86485efe8149e8c68fc38b0ab4e369 /Alc/hrtf.c
parent7ddfacb58f941b21da26b2749d3204307e3a0bbd (diff)
Readd the default HRTF filter (based on the diffuse set)
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r--Alc/hrtf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index 5cc0aeed..7a2e30cb 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -34,7 +34,9 @@ static const ALubyte azCount[19] = { 1, 12, 24, 36, 45, 56, 60, 72, 72, 72, 72,
static struct HRTF {
ALshort coeffs[HRIR_COUNT][HRIR_LENGTH];
ALubyte delays[HRIR_COUNT];
-} Hrtf;
+} Hrtf = {
+#include "hrtf_tables.inc"
+};
static ALuint CalcEvIndex(ALdouble ev)
{