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 28f78ad296b682fa4270f2a755034f4d01e0df51
parent 4ac61254d314bdf4c8ca3f59745643e92fa973df
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat, 12 Feb 2022 16:07:51 +0100

fix debug compile error

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 @@ -13,7 +13,7 @@ namespace Virus Controller::Controller(AudioPluginAudioProcessor &p, unsigned char deviceId) : m_processor(p), m_deviceId(deviceId) { - assert(m_paramsDescription.size() == Param_Count && "size of enum must match size of parameter descriptions"); + assert(g_paramsDescription.size() == Param_Count && "size of enum must match size of parameter descriptions"); juce::PropertiesFile::Options opts; opts.applicationName = "DSP56300 Emulator"; opts.filenameSuffix = ".settings";