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 8c4955fb685044be0fc54012ec1d33020ce164c7
parent d09acfb8d68ac4a68e52ea7c922b5a615289f390
Author: lol-catz <91396648+lol-catz@users.noreply.github.com>
Date:   Sat, 25 Sep 2021 19:18:15 -0500

Fix typo for LFO Shape [Sqaure -> Square]
Diffstat:
Msource/jucePlugin/VirusController.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/jucePlugin/VirusController.cpp b/source/jucePlugin/VirusController.cpp @@ -456,7 +456,7 @@ namespace Virus case 0: return "Sine"; case 1: return "Triangle"; case 2: return "Saw"; - case 3: return "Sqaure"; + case 3: return "Square"; case 4: return "S&H"; case 5: return "S&G"; default: return juce::String(idx);