From 9503ad1246e5f488a5d2c06577593af4678ef90d Mon Sep 17 00:00:00 2001 From: Kevin <68612569+diyelectromusic@users.noreply.github.com> Date: Fri, 18 Aug 2023 17:39:38 +0100 Subject: [PATCH] Fix for Issue 535, putting something on the display as soon as it is initalised. (#542) --- src/userinterface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/userinterface.cpp b/src/userinterface.cpp index 890232f..1c0716e 100644 --- a/src/userinterface.cpp +++ b/src/userinterface.cpp @@ -101,6 +101,8 @@ bool CUserInterface::Initialize (void) assert (m_pLCDBuffered); LCDWrite ("\x1B[?25l\x1B""d+"); // cursor off, autopage mode + LCDWrite ("MiniDexed\nLoading..."); + m_pLCDBuffered->Update (); LOGDBG ("LCD initialized"); }