diff --git a/src/userinterface.cpp b/src/userinterface.cpp index aa46f9e..2f98619 100644 --- a/src/userinterface.cpp +++ b/src/userinterface.cpp @@ -96,7 +96,7 @@ bool CUserInterface::Initialize (void) { m_pST7789Display->SetRotation (m_pConfig->GetST7789Rotation()); bool bLargeFont = !(m_pConfig->GetST7789SmallFont()); - m_pST7789 = new CST7789Device (m_pSPIMaster, m_pST7789Display, m_pConfig->GetLCDColumns (), m_pConfig->GetLCDRows (), bLargeFont, bLargeFont); + m_pST7789 = new CST7789Device (m_pSPIMaster, m_pST7789Display, m_pConfig->GetLCDColumns (), m_pConfig->GetLCDRows (), Font8x16, bLargeFont, bLargeFont); if (m_pST7789->Initialize()) { LOGDBG ("LCD: ST7789"); @@ -455,4 +455,4 @@ void CUserInterface::UISetMIDIButtonChannel (unsigned uCh) m_nMIDIButtonCh = CMIDIDevice::OmniMode; LOGNOTE("MIDI Button channel set to: OMNI"); } -} \ No newline at end of file +}