Fix color on failure messages

This commit is contained in:
Just Call Me Koko
2020-03-11 21:04:59 -04:00
parent 2039e517af
commit 9dbf0d4a69
2 changed files with 4 additions and 0 deletions

View File

@@ -113,8 +113,10 @@ void SDInterface::runUpdate() {
ESP.restart();
}
else {
display_obj.tft.setTextColor(TFT_RED);
display_obj.tft.println("Could not load update.bin from /");
Serial.println("Could not load update.bin from sd root");
display_obj.tft.setTextColor(TFT_WHITE);
}
}