mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-22 18:15:36 +00:00
Small typo on docs
On line 242, ´SoundIoFormatU16BE´ is incorrectly documented as an *Unsigned 16 bit Little Endian*; looking at the naming and structure, this is likely an *Unsigned 16 bit Big Endian*.
This commit is contained in:
parent
5ae35e2722
commit
2bb21ad417
|
@ -239,7 +239,7 @@ enum SoundIoFormat {
|
||||||
SoundIoFormatS16LE, ///< Signed 16 bit Little Endian
|
SoundIoFormatS16LE, ///< Signed 16 bit Little Endian
|
||||||
SoundIoFormatS16BE, ///< Signed 16 bit Big Endian
|
SoundIoFormatS16BE, ///< Signed 16 bit Big Endian
|
||||||
SoundIoFormatU16LE, ///< Unsigned 16 bit Little Endian
|
SoundIoFormatU16LE, ///< Unsigned 16 bit Little Endian
|
||||||
SoundIoFormatU16BE, ///< Unsigned 16 bit Little Endian
|
SoundIoFormatU16BE, ///< Unsigned 16 bit Big Endian
|
||||||
SoundIoFormatS24LE, ///< Signed 24 bit Little Endian using low three bytes in 32-bit word
|
SoundIoFormatS24LE, ///< Signed 24 bit Little Endian using low three bytes in 32-bit word
|
||||||
SoundIoFormatS24BE, ///< Signed 24 bit Big Endian using low three bytes in 32-bit word
|
SoundIoFormatS24BE, ///< Signed 24 bit Big Endian using low three bytes in 32-bit word
|
||||||
SoundIoFormatU24LE, ///< Unsigned 24 bit Little Endian using low three bytes in 32-bit word
|
SoundIoFormatU24LE, ///< Unsigned 24 bit Little Endian using low three bytes in 32-bit word
|
||||||
|
|
Loading…
Reference in a new issue