gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 9110e1ede7a48812968cf4443272a3c67c1a410d
parent 6f2ca89d355825a0ac241d77a2ed23bfe90c50bd
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 18 Apr 2024 22:18:42 +0200

we only have 8 parts, not 16

Diffstat:
Msource/xtJucePlugin/xtController.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/xtJucePlugin/xtController.h b/source/xtJucePlugin/xtController.h @@ -110,10 +110,10 @@ private: const uint8_t m_deviceId; Patch m_singleEditBuffer; - std::array<Patch,16> m_singleEditBuffers; + std::array<Patch,8> m_singleEditBuffers; std::array<uint8_t, 39> m_globalData{}; std::array<uint8_t, 1> m_modeData{}; - std::array<uint32_t, 16> m_currentSingles{0}; + std::array<uint32_t, 8> m_currentSingles{0}; uint32_t m_currentSingle = 0; xtJucePlugin::FrontPanel* m_frontPanel = nullptr; };