diff options
Diffstat (limited to 'alc/buffer_storage.cpp')
-rw-r--r-- | alc/buffer_storage.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/alc/buffer_storage.cpp b/alc/buffer_storage.cpp index 727cb281..7d3adddd 100644 --- a/alc/buffer_storage.cpp +++ b/alc/buffer_storage.cpp @@ -6,7 +6,7 @@ #include <cstdint> -ALuint BytesFromFmt(FmtType type) noexcept +uint BytesFromFmt(FmtType type) noexcept { switch(type) { @@ -19,7 +19,8 @@ ALuint BytesFromFmt(FmtType type) noexcept } return 0; } -ALuint ChannelsFromFmt(FmtChannels chans, ALuint ambiorder) noexcept + +uint ChannelsFromFmt(FmtChannels chans, uint ambiorder) noexcept { switch(chans) { |