From e790ea3f71a81a615bb097058b5f3e8c78be795f Mon Sep 17 00:00:00 2001 From: KD4Z Date: Mon, 9 Apr 2018 12:53:57 -0400 Subject: [PATCH] OLED Display - missing ref forgot to include the hook to pass the slot enables down into the driver --- MMDVMHost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMDVMHost.cpp b/MMDVMHost.cpp index 3ad78b0..0cf02a9 100644 --- a/MMDVMHost.cpp +++ b/MMDVMHost.cpp @@ -1389,7 +1389,7 @@ void CMMDVMHost::createDisplay() unsigned char brightness = m_conf.getOLEDBrightness(); bool invert = m_conf.getOLEDInvert(); bool scroll = m_conf.getOLEDScroll(); - m_display = new COLED(type, brightness, invert, scroll); + m_display = new COLED(type, brightness, invert, scroll, m_conf.getDMRNetworkSlot1(), m_conf.getDMRNetworkSlot2()); #endif } else { m_display = new CNullDisplay;