diff options
author | Chris Robinson <[email protected]> | 2020-12-04 07:35:40 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-04 11:15:50 -0800 |
commit | 84d47f7d4c2d1355a6eb914dd091b39683f83c15 (patch) | |
tree | 5e8266a74e7821d47e8d1bc0e14cd7570fef6bf5 /alc/mixer | |
parent | 36c1589c11cb8f197576e748e06bc5fbb6dcc8bf (diff) |
Move the bsinc tables to core
Diffstat (limited to 'alc/mixer')
-rw-r--r-- | alc/mixer/mixer_c.cpp | 4 | ||||
-rw-r--r-- | alc/mixer/mixer_neon.cpp | 2 | ||||
-rw-r--r-- | alc/mixer/mixer_sse.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/alc/mixer/mixer_c.cpp b/alc/mixer/mixer_c.cpp index c292235a..702401e6 100644 --- a/alc/mixer/mixer_c.cpp +++ b/alc/mixer/mixer_c.cpp @@ -5,8 +5,8 @@ #include <limits> #include "alcmain.h" -#include "alu.h" -#include "bsinc_defs.h" +#include "alnumeric.h" +#include "core/bsinc_tables.h" #include "defs.h" #include "hrtfbase.h" diff --git a/alc/mixer/mixer_neon.cpp b/alc/mixer/mixer_neon.cpp index bce2f4f8..631b0371 100644 --- a/alc/mixer/mixer_neon.cpp +++ b/alc/mixer/mixer_neon.cpp @@ -5,7 +5,7 @@ #include <limits> #include "alnumeric.h" -#include "bsinc_defs.h" +#include "core/bsinc_defs.h" #include "defs.h" #include "hrtfbase.h" diff --git a/alc/mixer/mixer_sse.cpp b/alc/mixer/mixer_sse.cpp index 858f5bff..c59e8579 100644 --- a/alc/mixer/mixer_sse.cpp +++ b/alc/mixer/mixer_sse.cpp @@ -5,7 +5,7 @@ #include <limits> #include "alnumeric.h" -#include "bsinc_defs.h" +#include "core/bsinc_defs.h" #include "defs.h" #include "hrtfbase.h" |