Changed type of callsign variable for TFTSerial

This commit is contained in:
phl0
2016-04-21 12:09:54 +02:00
parent f6c7ee79c6
commit a2413f30db
3 changed files with 6 additions and 6 deletions

View File

@@ -582,7 +582,7 @@ void CMMDVMHost::createDisplay()
LogInfo(" Port: %s", port.c_str());
LogInfo(" Brightness: %u", brightness);
m_display = new CTFTSerial(callsign.c_str(), dmrid, port, brightness);
m_display = new CTFTSerial(callsign, dmrid, port, brightness);
} else if (type == "Nextion") {
std::string port = m_conf.getNextionPort();
unsigned int brightness = m_conf.getNextionBrightness();