Change assertion for extended CCs

This commit is contained in:
Paul Ferrand 2019-12-17 22:48:31 +01:00
parent 7ea5f4611c
commit 2317c4dd4b

View file

@ -440,7 +440,7 @@ void sfz::Synth::noteOff(int delay, int channel, int noteNumber, uint8_t velocit
void sfz::Synth::cc(int delay, int channel, int ccNumber, uint8_t ccValue) noexcept
{
ASSERT(ccNumber < 128);
ASSERT(ccNumber < config::numCCs);
ASSERT(ccNumber >= 0);