diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2023-04-03 04:51:28 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2023-04-03 04:51:28 -0700 |
commit | b59b80fb17a2c4bc4e5d581207affd727a34abc7 (patch) | |
tree | 9bae342157be80f34dd78e8668473d524e661131 /al/buffer.h | |
parent | dfd8f11551e43470708c5b7ddf766abab4d5ac30 (diff) |
Hold the buffer sample pointer separate from the vector
Diffstat (limited to 'al/buffer.h')
-rw-r--r-- | al/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/buffer.h b/al/buffer.h index da7da740..64ebe1f3 100644 --- a/al/buffer.h +++ b/al/buffer.h @@ -26,7 +26,7 @@ enum class EaxStorage : uint8_t { struct ALbuffer : public BufferStorage { ALbitfieldSOFT Access{0u}; - al::vector<al::byte,16> mData; + al::vector<al::byte,16> mDataStorage; ALuint OriginalSize{0}; |