diff options
author | Chris Robinson <[email protected]> | 2011-05-05 18:54:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-05-05 18:54:10 -0700 |
commit | 0e824914b2a60077c4730479f19b0c5da39e94c3 (patch) | |
tree | 59ce9a532e926150a72a8247a7ff0656310fd20b /OpenAL32/Include/alBuffer.h | |
parent | 7832a6d1d8fa6814b97d4486df2e3fe8e0d32171 (diff) |
Use signed samples for 8-bit storage
Diffstat (limited to 'OpenAL32/Include/alBuffer.h')
-rw-r--r-- | OpenAL32/Include/alBuffer.h | 2 |
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, }; |