diff options
author | Chris Robinson <[email protected]> | 2019-05-24 06:12:20 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-24 06:12:20 -0700 |
commit | 9c63bbd6ce90146939891f56cb0265e5d65ec846 (patch) | |
tree | 8b86fe726dc4dd4ea2d020e61c745657119a3db7 /OpenAL32/Include | |
parent | 1945b50834e2be380e0ad206f9deefacb455191b (diff) |
Use raw bytes for the buffer data
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alBuffer.h | 3 |
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}; |