diff options
author | Chris Robinson <[email protected]> | 2018-03-22 07:05:40 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-03-22 07:05:40 -0700 |
commit | 7a23330ffe34c0d04f882fdb45f68733ba49659d (patch) | |
tree | 54da49d0382b96ad9693a5d4051210e4210120fb /Alc/effects/pshifter.c | |
parent | 6ea3b5445fc574c8c18ae88d6f853dfb8c14ef1e (diff) |
Move the filter implementation to a separate directory
Diffstat (limited to 'Alc/effects/pshifter.c')
-rw-r--r-- | Alc/effects/pshifter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/pshifter.c b/Alc/effects/pshifter.c index d36597ae..6542be56 100644 --- a/Alc/effects/pshifter.c +++ b/Alc/effects/pshifter.c @@ -24,10 +24,10 @@ #include <stdlib.h> #include "alMain.h" -#include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" #define MAX_SIZE 2048 |