aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alBuffer.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-01-19 20:10:31 -0800
committerChris Robinson <[email protected]>2018-01-19 20:10:31 -0800
commitab2295b68f19212ce34cf2b56e81ee80186310f9 (patch)
treec4036feba34a32a9ec348622459313d04893c19f /OpenAL32/Include/alBuffer.h
parent940c6146e832b2226876f3d8fdc3369974ed16e9 (diff)
Store 8-bit sample types directly as unsigned byte
Diffstat (limited to 'OpenAL32/Include/alBuffer.h')
-rw-r--r--OpenAL32/Include/alBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alBuffer.h b/OpenAL32/Include/alBuffer.h
index 0f39dfae..852a8782 100644
--- a/OpenAL32/Include/alBuffer.h
+++ b/OpenAL32/Include/alBuffer.h
@@ -44,7 +44,7 @@ inline ALsizei FrameSizeFromUserFmt(enum UserFmtChannels chans, enum UserFmtType
/* Storable formats */
enum FmtType {
- FmtByte = UserFmtByte,
+ FmtUByte = UserFmtUByte,
FmtShort = UserFmtShort,
FmtFloat = UserFmtFloat,
FmtMulaw = UserFmtMulaw,