From ecd77665920d6b74db6652f1a8d00a77d6c1c030 Mon Sep 17 00:00:00 2001 From: Kevin <68612569+diyelectromusic@users.noreply.github.com> Date: Wed, 9 Apr 2025 20:07:00 +0100 Subject: [PATCH] Include fix for latest circle version build. --- src/userinterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/userinterface.cpp b/src/userinterface.cpp index 1562d0e..fcd3160 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");