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 b9c6e29187e15b3209c6afa5e72e26c0a33fca57
parent 8a5a04367f4614d76998108b02ca8bfc929edf72
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 10 Mar 2022 23:20:56 +0100

make split sysex function public

Diffstat:
Msource/jucePlugin/ui/Virus_PatchBrowser.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/jucePlugin/ui/Virus_PatchBrowser.h b/source/jucePlugin/ui/Virus_PatchBrowser.h @@ -30,6 +30,8 @@ public: static bool load(std::vector<Patch>& _result, std::set<std::string>* _dedupeChecksums, const std::vector<uint8_t>& _data); static uint32_t loadBankFile(std::vector<Patch>& _result, std::set<std::string>* _dedupeChecksums, const juce::File& file); + static void splitMultipleSysex(std::vector<std::vector<uint8_t>>& _dst, const std::vector<uint8_t>& _src); + private: VirusParameterBinding &m_parameterBinding; Virus::Controller& m_controller; @@ -76,6 +78,4 @@ private: ST = 7, VER = 8, }; - - static void splitMultipleSysex(std::vector<std::vector<uint8_t>>& _dst, const std::vector<uint8_t>& _src); };