diff options
author | Chris Robinson <[email protected]> | 2021-12-17 17:13:59 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-12-17 17:13:59 -0800 |
commit | d16b61dffb24cbe90e03e921684cb538cb23e181 (patch) | |
tree | 7e0a363ad68fd21a1f24dfdf08673cb7f6fdb771 /alc/alc.cpp | |
parent | fbc42aad7e70131655387c06092f8cbbc286c0db (diff) |
Move the effects base and effectslot to core
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index 89c836d0..c6ac6508 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -68,8 +68,6 @@ #include "albit.h" #include "albyte.h" #include "alconfig.h" -#include "alc/context.h" -#include "alc/effectslot.h" #include "almalloc.h" #include "alnumeric.h" #include "aloptional.h" @@ -77,6 +75,7 @@ #include "alstring.h" #include "alu.h" #include "atomic.h" +#include "context.h" #include "core/ambidefs.h" #include "core/bformatdec.h" #include "core/bs2b.h" @@ -84,6 +83,7 @@ #include "core/cpu_caps.h" #include "core/devformat.h" #include "core/device.h" +#include "core/effectslot.h" #include "core/except.h" #include "core/helpers.h" #include "core/mastering.h" |