aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-05-24 06:12:20 -0700
committerChris Robinson <[email protected]>2019-05-24 06:12:20 -0700
commit9c63bbd6ce90146939891f56cb0265e5d65ec846 (patch)
tree8b86fe726dc4dd4ea2d020e61c745657119a3db7 /OpenAL32/Include
parent1945b50834e2be380e0ad206f9deefacb455191b (diff)
Use raw bytes for the buffer data
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alBuffer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alBuffer.h b/OpenAL32/Include/alBuffer.h
index ec9f6c37..22e99b99 100644
--- a/OpenAL32/Include/alBuffer.h
+++ b/OpenAL32/Include/alBuffer.h
@@ -8,6 +8,7 @@
#include "inprogext.h"
#include "atomic.h"
#include "vector.h"
+#include "albyte.h"
/* User formats */
@@ -86,7 +87,7 @@ inline ALsizei FrameSizeFromFmt(FmtChannels chans, FmtType type)
struct ALbuffer {
- al::vector<ALbyte,16> mData;
+ al::vector<al::byte,16> mData;
ALsizei Frequency{0};
ALbitfieldSOFT Access{0u};