commit ea6d1f4b03bc28080a443cfb63e157c59c343e2b parent b22872517c4fc49b6468291c12c0b454607987d7 Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Wed, 22 Sep 2021 22:25:31 +0200 fix getSinglePresetNames only returning preset names for Bank A Diffstat:
M | source/jucePlugin/VirusController.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/jucePlugin/VirusController.cpp b/source/jucePlugin/VirusController.cpp @@ -180,7 +180,7 @@ namespace Virus juce::StringArray bankNames; for (auto i = 0; i < 128; i++) - bankNames.add(parseAsciiText(m_singles[0][i].data, 128 + 112)); + bankNames.add(parseAsciiText(m_singles[bank][i].data, 128 + 112)); return bankNames; } juce::StringArray Controller::getMultiPresetsName() const