From 1f8c86d9cad3e4ab0da8876bc1e03664f4000fe8 Mon Sep 17 00:00:00 2001 From: David Reid Date: Tue, 22 Aug 2023 21:20:35 +1000 Subject: [PATCH] Fix a copy/paste error. --- .../nodes/ma_channel_combiner_node/ma_channel_combiner_node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/nodes/ma_channel_combiner_node/ma_channel_combiner_node.h b/extras/nodes/ma_channel_combiner_node/ma_channel_combiner_node.h index 485ffc80..d38b824a 100644 --- a/extras/nodes/ma_channel_combiner_node/ma_channel_combiner_node.h +++ b/extras/nodes/ma_channel_combiner_node/ma_channel_combiner_node.h @@ -9,7 +9,7 @@ extern "C" { typedef struct { ma_node_config nodeConfig; - ma_uint32 channels; /* The number of channels of the source, which will be the same as the output. Must be 1 or 2. The excite bus must always have one channel. */ + ma_uint32 channels; } ma_channel_combiner_node_config; MA_API ma_channel_combiner_node_config ma_channel_combiner_node_config_init(ma_uint32 channels);