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 d9fc02af523ec0d0d44b7a767580bd77fd11a94c
parent d59a4e953730e1e0ff7d9a8390da9f1b53ac1dec
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat,  8 Mar 2025 15:40:35 +0100

always enable wave editor

Diffstat:
Msource/xtJucePlugin/xtEditor.cpp | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/xtJucePlugin/xtEditor.cpp b/source/xtJucePlugin/xtEditor.cpp @@ -111,9 +111,9 @@ namespace xtJucePlugin getPatchManager()->selectNextPreset(m_controller.getCurrentPart()); }; -#if defined(_DEBUG) && defined(_WIN32) - assert(m_waveEditor); - m_waveEditor->initialize(); +#if 1 + if(m_waveEditor) + m_waveEditor->initialize(); #else auto* waveEditorButtonParent = findComponent("waveEditorButtonParent"); waveEditorButtonParent->setVisible(false);