diff options
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | al/buffer.h | 2 | ||||
-rw-r--r-- | alc/buffer_storage.cpp (renamed from alc/buffer_formats.cpp) | 2 | ||||
-rw-r--r-- | alc/buffer_storage.h (renamed from alc/buffer_formats.h) | 0 | ||||
-rw-r--r-- | alc/effects/base.h | 2 | ||||
-rw-r--r-- | alc/fmt_traits.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b5304da6..04946b9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -617,8 +617,8 @@ set(ALC_OBJS alc/bsinc_tables.cpp alc/bsinc_tables.h alc/bufferline.h - alc/buffer_formats.cpp - alc/buffer_formats.h + alc/buffer_storage.cpp + alc/buffer_storage.h alc/compat.h alc/converter.cpp alc/converter.h diff --git a/al/buffer.h b/al/buffer.h index 5faded0d..6b1d45f5 100644 --- a/al/buffer.h +++ b/al/buffer.h @@ -8,7 +8,7 @@ #include "albyte.h" #include "almalloc.h" #include "atomic.h" -#include "buffer_formats.h" +#include "buffer_storage.h" #include "inprogext.h" #include "vector.h" diff --git a/alc/buffer_formats.cpp b/alc/buffer_storage.cpp index 7ee4bfc8..727cb281 100644 --- a/alc/buffer_formats.cpp +++ b/alc/buffer_storage.cpp @@ -1,7 +1,7 @@ #include "config.h" -#include "buffer_formats.h" +#include "buffer_storage.h" #include <cstdint> diff --git a/alc/buffer_formats.h b/alc/buffer_storage.h index b10cea4c..b10cea4c 100644 --- a/alc/buffer_formats.h +++ b/alc/buffer_storage.h diff --git a/alc/effects/base.h b/alc/effects/base.h index 6aa0f9e9..e662d69c 100644 --- a/alc/effects/base.h +++ b/alc/effects/base.h @@ -8,7 +8,7 @@ #include "almalloc.h" #include "alspan.h" #include "atomic.h" -#include "buffer_formats.h" +#include "buffer_storage.h" #include "intrusive_ptr.h" struct ALeffectslot; diff --git a/alc/fmt_traits.h b/alc/fmt_traits.h index c3bf5fa5..9d2a2567 100644 --- a/alc/fmt_traits.h +++ b/alc/fmt_traits.h @@ -5,7 +5,7 @@ #include <cstdint> #include "albyte.h" -#include "buffer_formats.h" +#include "buffer_storage.h" namespace al { |