aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-05-05 18:54:10 -0700
committerChris Robinson <[email protected]>2011-05-05 18:54:10 -0700
commit0e824914b2a60077c4730479f19b0c5da39e94c3 (patch)
tree59ce9a532e926150a72a8247a7ff0656310fd20b /OpenAL32/Include
parent7832a6d1d8fa6814b97d4486df2e3fe8e0d32171 (diff)
Use signed samples for 8-bit storage
Diffstat (limited to 'OpenAL32/Include')
-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 f6b8e47d..2cb025b7 100644
--- a/OpenAL32/Include/alBuffer.h
+++ b/OpenAL32/Include/alBuffer.h
@@ -45,7 +45,7 @@ static __inline ALuint FrameSizeFromUserFmt(enum UserFmtChannels chans,
/* Storable formats */
enum FmtType {
- FmtUByte = UserFmtUByte,
+ FmtByte = UserFmtByte,
FmtShort = UserFmtShort,
FmtFloat = UserFmtFloat,
};