diff options
author | Chris Robinson <[email protected]> | 2020-12-04 09:42:13 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-04 11:15:50 -0800 |
commit | 69d55d7e03996484cc899de1e21172a7a4532d6b (patch) | |
tree | df23284a2f4d6d01cc2c9cf8c4fb26f62652ad24 /alc/effects/distortion.cpp | |
parent | 84d47f7d4c2d1355a6eb914dd091b39683f83c15 (diff) |
Move the filters to core
Diffstat (limited to 'alc/effects/distortion.cpp')
-rw-r--r-- | alc/effects/distortion.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/alc/effects/distortion.cpp b/alc/effects/distortion.cpp index 757244c5..65f8977b 100644 --- a/alc/effects/distortion.cpp +++ b/alc/effects/distortion.cpp @@ -24,11 +24,10 @@ #include <cmath> #include <cstdlib> -#include "al/auxeffectslot.h" #include "alcmain.h" #include "alcontext.h" -#include "alu.h" -#include "filters/biquad.h" +#include "core/filters/biquad.h" +#include "effectslot.h" namespace { |