Fixing Typo: Clinet -> Client

This commit is contained in:
Eric
2021-03-24 09:39:52 -07:00
parent a5edc17ee5
commit 95939ec4cb
2 changed files with 2 additions and 2 deletions

View File

@@ -185,7 +185,7 @@ void display_ready_screen(){
tft.setTextDatum(MC_DATUM);
tft.setFreeFont(FF21);
tft.setTextColor(TFT_WHITE, TFT_BLACK);
tft.drawString(deviceRole == Server ? "[Server Ready]" : "[Clinet Ready]", tft.width()/2, 100, GFXFF);
tft.drawString(deviceRole == Server ? "[Server Ready]" : "[Client Ready]", tft.width()/2, 100, GFXFF);
}
void print_log_screen(String text){