Fix start screen on soft reboot

e.g., caused by BYE via FTP
pull/883/merge
probonopd 1 day ago committed by GitHub
parent eb03a10f9e
commit 686f7e6dd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      src/userinterface.cpp

@ -154,7 +154,8 @@ bool CUserInterface::Initialize (void)
m_pLCDBuffered = new CWriteBufferDevice (m_pLCD);
assert (m_pLCDBuffered);
// clear sceen and go to top left corner
LCDWrite ("\x1B[H\x1B[J"); // cursor home and clear screen
LCDWrite ("\x1B[?25l\x1B""d+"); // cursor off, autopage mode
LCDWrite ("MiniDexed\nLoading...");
m_pLCDBuffered->Update ();

Loading…
Cancel
Save