From 6cff872b12f913344d49847467c4c880123af432 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 12 Jan 2020 08:28:41 +1000 Subject: [PATCH] Minor documentation update. --- miniaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index 9c40fb32..582ce621 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -28298,7 +28298,7 @@ void ma_pcm_s16_to_f32__reference(void* dst, const void* src, ma_uint64 count, m #if 0 /* The accurate way. */ x = x + 32768.0f; /* -32768..32767 to 0..65535 */ - x = x * 0.00003051804379339284f; /* 0..65536 to 0..2 */ + x = x * 0.00003051804379339284f; /* 0..65535 to 0..2 */ x = x - 1; /* 0..2 to -1..1 */ #else /* The fast way. */