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 1ce56e25024e1e5b04f10cdb7aa1f2b850397b1b
parent 2bd2d12fccb3e7774837eef3a106ad5489af84b0
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon,  5 Aug 2024 19:33:38 +0200

fix command line not booting anymore

Diffstat:
Msource/nord/n2x/n2xLib/n2xfrontpanel.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/nord/n2x/n2xLib/n2xfrontpanel.cpp b/source/nord/n2x/n2xLib/n2xfrontpanel.cpp @@ -220,7 +220,7 @@ namespace n2x void FrontPanelCS6::onLCDChanged() { // Check if the LCD display " 1", used as indication that device has finished booting - if(m_lcds[0] == 255 && m_lcds[1] == 254 && m_lcds[2] == 159) + if(m_lcds[0] == 255 && m_lcds[1] >= 254 && m_lcds[2] == 159) { m_panel.getHardware().notifyBootFinished(); }