Use the right array size for the mixing parameters

master
Chris Robinson 2022-08-14 10:07:32 -07:00
parent 4f346caea3
commit fbfa8a2686
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ struct BFChannelConfig {
struct MixParams {
/* Coefficient channel mapping for mixing to the buffer. */
std::array<BFChannelConfig,MAX_OUTPUT_CHANNELS> AmbiMap{};
std::array<BFChannelConfig,MaxAmbiChannels> AmbiMap{};
al::span<FloatBufferLine> Buffer;
};