aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-05-16 02:08:18 -0700
committerChris Robinson <[email protected]>2022-05-16 02:08:18 -0700
commit65e4c20c27f2acf853e58fd4c26ebc0e3eb926c6 (patch)
tree4fb9a3bffbda4ab8dc1363caa2426cf8e8bbf30e /alc
parent83238973ed08225adf03e76b6933e0c209f93fd9 (diff)
Move EAX files to their own sub-directory
Diffstat (limited to 'alc')
-rw-r--r--alc/alc.cpp4
-rw-r--r--alc/context.cpp4
-rw-r--r--alc/context.h8
-rw-r--r--alc/device.h2
4 files changed, 9 insertions, 9 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp
index 686b794e..3fa0d353 100644
--- a/alc/alc.cpp
+++ b/alc/alc.cpp
@@ -156,8 +156,8 @@
#endif
#ifdef ALSOFT_EAX
-#include "al/eax_globals.h"
-#include "al/eax_x_ram.h"
+#include "al/eax/globals.h"
+#include "al/eax/x_ram.h"
#endif // ALSOFT_EAX
diff --git a/alc/context.cpp b/alc/context.cpp
index 34da3784..5fe03e78 100644
--- a/alc/context.cpp
+++ b/alc/context.cpp
@@ -34,8 +34,8 @@
#include <cstring>
#include "alstring.h"
-#include "al/eax_exception.h"
-#include "al/eax_globals.h"
+#include "al/eax/exception.h"
+#include "al/eax/globals.h"
#endif // ALSOFT_EAX
namespace {
diff --git a/alc/context.h b/alc/context.h
index 72b259e9..b3f1ea09 100644
--- a/alc/context.h
+++ b/alc/context.h
@@ -20,10 +20,10 @@
#include "vector.h"
#ifdef ALSOFT_EAX
-#include "al/eax_eax_call.h"
-#include "al/eax_fx_slot_index.h"
-#include "al/eax_fx_slots.h"
-#include "al/eax_utils.h"
+#include "al/eax/eax_call.h"
+#include "al/eax/fx_slot_index.h"
+#include "al/eax/fx_slots.h"
+#include "al/eax/utils.h"
using EaxContextSharedDirtyFlagsValue = std::uint_least8_t;
diff --git a/alc/device.h b/alc/device.h
index 434d4d8f..ef50f53e 100644
--- a/alc/device.h
+++ b/alc/device.h
@@ -20,7 +20,7 @@
#include "vector.h"
#ifdef ALSOFT_EAX
-#include "al/eax_x_ram.h"
+#include "al/eax/x_ram.h"
#endif // ALSOFT_EAX
struct ALbuffer;