From 742bccff4d12b546741f058022b79f99ba452564 Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 1 Oct 2020 20:24:52 +1000 Subject: [PATCH] Remove an unnecessary member from ma_engine_config. --- research/miniaudio_engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/research/miniaudio_engine.h b/research/miniaudio_engine.h index e165efcb..c79a1550 100644 --- a/research/miniaudio_engine.h +++ b/research/miniaudio_engine.h @@ -1584,12 +1584,12 @@ struct ma_listener ma_quat rotation; }; + typedef struct { ma_resource_manager* pResourceManager; /* Can be null in which case a resource manager will be created for you. */ ma_context* pContext; ma_device* pDevice; /* If set, the caller is responsible for calling ma_engine_data_callback() in the device's data callback. */ - ma_pcm_rb fixedRB; /* The intermediary ring buffer for helping with fixed sized updates. */ ma_format format; /* The format to use when mixing and spatializing. When set to 0 will use the native format of the device. */ ma_uint32 channels; /* The number of channels to use when mixing and spatializing. When set to 0, will use the native channel count of the device. */ ma_uint32 sampleRate; /* The sample rate. When set to 0 will use the native channel count of the device. */