commit 1361421048ada6c85441e1e3de60c66253648b39
parent 023f4101772f3834a55058c9ea8ad6318de8daa1
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Mon, 4 Nov 2024 21:26:08 +0100
skip LCD print in release builds
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/source/nord/n2x/n2xLib/n2xfrontpanel.cpp b/source/nord/n2x/n2xLib/n2xfrontpanel.cpp
@@ -234,7 +234,9 @@ namespace n2x
{
m_panel.getHardware().notifyBootFinished();
}
+#ifdef _DEBUG
printLCD();
+#endif
}
FrontPanel::FrontPanel(Hardware& _hardware) : m_hardware(_hardware), m_cs4(*this), m_cs6(*this)