Save some spaces on 4x16 displays

This commit is contained in:
phl0
2016-04-18 08:47:49 +02:00
parent d29da6ba58
commit 85cfbe4171

View File

@@ -155,7 +155,7 @@ void CHD44780::writeDStar(const char* my1, const char* my2, const char* your, co
if (strcmp(reflector, " ") == 0) {
::sprintf(buffer, "%.8s", your);
} else {
::sprintf(buffer, "%.8s <- %.8s", your, reflector);
::sprintf(buffer, "%.8s<%.8s", your, reflector);
}
::lcdPosition(m_fd, 0, 2);
::lcdPrintf(m_fd, "%.*s", m_cols, buffer);