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:
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 @@ -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";