OLED Display - missing ref

forgot to include the hook to pass the slot enables down into the driver
This commit is contained in:
KD4Z 2018-04-09 12:53:57 -04:00
parent c1d7c0972f
commit e790ea3f71

View file

@ -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;