From dd76ab1fce22ad558407c7b6987c9e4e792415eb Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 5 Nov 2021 16:43:22 -0700 Subject: [PATCH] Add a 32-bit float sample type --- include/zmusic.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/zmusic.h b/include/zmusic.h index 9b0937a..d3782c3 100644 --- a/include/zmusic.h +++ b/include/zmusic.h @@ -67,7 +67,8 @@ typedef struct SoundStreamInfo_ typedef enum SampleType_ { SampleType_UInt8, - SampleType_Int16 + SampleType_Int16, + SampleType_Float32 } SampleType; typedef enum ChannelConfig_