From 47e1756fa7d783ed6b7fffc185fbeaba6b9c372f Mon Sep 17 00:00:00 2001 From: SimonJRiddix <69309548+simonjriddix@users.noreply.github.com> Date: Mon, 17 May 2021 12:56:42 +0200 Subject: [PATCH] Update soundio.c fix unsigned 16-bit BE format to string missing --- src/soundio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soundio.c b/src/soundio.c index 116ef50..785cc09 100644 --- a/src/soundio.c +++ b/src/soundio.c @@ -128,7 +128,7 @@ const char * soundio_format_string(enum SoundIoFormat format) { case SoundIoFormatS16LE: return "signed 16-bit LE"; case SoundIoFormatS16BE: return "signed 16-bit BE"; case SoundIoFormatU16LE: return "unsigned 16-bit LE"; - case SoundIoFormatU16BE: return "unsigned 16-bit LE"; + case SoundIoFormatU16BE: return "unsigned 16-bit BE"; case SoundIoFormatS24LE: return "signed 24-bit LE"; case SoundIoFormatS24BE: return "signed 24-bit BE"; case SoundIoFormatU24LE: return "unsigned 24-bit LE";