From 7a8ef53f83c7a8744cbd2d15c8a4c73b472c1abf Mon Sep 17 00:00:00 2001 From: probonopd Date: Tue, 18 Mar 2025 22:05:45 +0100 Subject: [PATCH] Update userinterface.cpp https://github.com/probonopd/MiniDexed/pull/755#issuecomment-2734721980 --- src/userinterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}