Fixed LAST_CHANNEL compile problem (missing comma)

This commit is contained in:
OneOfEleven
2023-09-20 09:44:17 +01:00
parent 99bff425d6
commit b9bd049dc9
8 changed files with 22 additions and 37 deletions

View File

@@ -102,7 +102,7 @@ void Render(const uint8_t rssi, const uint8_t RssiLevel, const uint8_t VFO)
memmove(pLine + 20, BITMAP_AntennaLevel6, sizeof(BITMAP_AntennaLevel6));
}
ST7565_DrawLine(0, Line, 23, pLine, (pLine == NULL) ? true : false);
ST7565_DrawLine(0, Line, 23, pLine);
}
void UI_UpdateRSSI(uint16_t RSSI)