diff options
author | Chris Robinson <[email protected]> | 2021-04-26 07:56:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-04-26 08:04:50 -0700 |
commit | 22a8ebff8094785ec53aadef8489dc60f6939d55 (patch) | |
tree | d5297c7fa444e1ac3e2980a2d49cae50f041ddc3 /alc/backends/base.cpp | |
parent | 2479483645bf719233fa5d39bc91682f12d71350 (diff) |
Move GetChannelIdxByName and clean up some more includes
Diffstat (limited to 'alc/backends/base.cpp')
-rw-r--r-- | alc/backends/base.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/alc/backends/base.cpp b/alc/backends/base.cpp index c4a4abeb..0c28d238 100644 --- a/alc/backends/base.cpp +++ b/alc/backends/base.cpp @@ -3,21 +3,22 @@ #include "base.h" +#include <algorithm> +#include <array> #include <atomic> -#include <thread> #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <mmreg.h> -#endif #include "albit.h" -#include "alcmain.h" -#include "alnumeric.h" +#include "core/logging.h" #include "aloptional.h" +#endif + #include "atomic.h" -#include "core/logging.h" +#include "core/devformat.h" bool BackendBase::reset() |