aboutsummaryrefslogtreecommitdiffstats
path: root/al/buffer.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-21 16:47:33 -0700
committerChris Robinson <[email protected]>2019-09-21 16:47:33 -0700
commit564c953e9465855890149a2d1b4b51f1f644fd9b (patch)
treec57f4d1f9fcba4f60c3482ce8ea0922c67c17419 /al/buffer.h
parent146afcbd7087e07dd9245ac503a9d7f93a45ec18 (diff)
Make the buffer frequency unsigned
Diffstat (limited to 'al/buffer.h')
-rw-r--r--al/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/buffer.h b/al/buffer.h
index 70faf56e..d41eec5d 100644
--- a/al/buffer.h
+++ b/al/buffer.h
@@ -68,7 +68,7 @@ inline ALuint FrameSizeFromFmt(FmtChannels chans, FmtType type)
struct ALbuffer {
al::vector<al::byte,16> mData;
- ALsizei Frequency{0};
+ ALuint Frequency{0u};
ALbitfieldSOFT Access{0u};
ALuint SampleLen{0u};