From 2bb21ad417d41c6c25a482e3f74fa26c595abf08 Mon Sep 17 00:00:00 2001 From: Ricardo Subtil Date: Wed, 22 Aug 2018 11:27:25 +0100 Subject: [PATCH] Small typo on docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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*. --- soundio/soundio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soundio/soundio.h b/soundio/soundio.h index 02618e0..89109a3 100644 --- a/soundio/soundio.h +++ b/soundio/soundio.h @@ -239,7 +239,7 @@ enum SoundIoFormat { SoundIoFormatS16LE, ///< Signed 16 bit Little Endian SoundIoFormatS16BE, ///< Signed 16 bit Big 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 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