Commit 26e429ff authored by David Reid's avatar David Reid

Fix a possible crash when initializing a channel converter.

parent d2153bc8
...@@ -50577,8 +50577,9 @@ static ma_uint32 ma_channel_map_get_spatial_channel_count(const ma_channel* pCha ...@@ -50577,8 +50577,9 @@ static ma_uint32 ma_channel_map_get_spatial_channel_count(const ma_channel* pCha
MA_ASSERT(channels > 0); MA_ASSERT(channels > 0);
for (iChannel = 0; iChannel < channels; ++iChannel) { for (iChannel = 0; iChannel < channels; ++iChannel) {
if (ma_is_spatial_channel_position(pChannelMap[iChannel])) if (ma_is_spatial_channel_position(ma_channel_map_get_channel(pChannelMap, channels, iChannel))) {
spatialChannelCount++; spatialChannelCount++;
}
} }
return spatialChannelCount; return spatialChannelCount;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment