From 38ab8554152d0f7076425238fb430b3dd9a5d2cd Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Tue, 17 Dec 2019 18:48:48 +0100 Subject: [PATCH] Change the size of the ccSwitched bitset --- src/sfizz/Region.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Region.h b/src/sfizz/Region.h index 310d985f..82465563 100644 --- a/src/sfizz/Region.h +++ b/src/sfizz/Region.h @@ -323,7 +323,7 @@ private: bool pitchSwitched { true }; bool bpmSwitched { true }; bool aftertouchSwitched { true }; - std::bitset<128> ccSwitched; + std::bitset ccSwitched; std::string defaultPath { "" }; int activeNotesInRange { -1 };