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 1c39ab303e375639869dcbbbf53ba7150691d558
parent c26de0dfaa0b896ab8af903830f72e3d910c4372
Author: lol-catz <lolcatz21@protonmail.com>
Date:   Mon, 27 Sep 2021 13:47:40 -0500

fix OSC SHAPE Mismatched (SAW and WAVE)

Diffstat:
Msource/jucePlugin/VirusController.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/jucePlugin/VirusController.cpp b/source/jucePlugin/VirusController.cpp @@ -368,9 +368,9 @@ namespace Virus { const auto idx = juce::roundToInt(panIdx); if (idx == 64) - return "Wave"; - if (idx == 0) return "Saw"; + if (idx == 0) + return "Wave"; if (idx == 127) return "Pulse"; return numTo7bitSigned(idx);