Update update warning screen to tell the people the update folder is not a file

This commit is contained in:
Maschell 2023-01-11 10:49:34 +01:00
parent ade0f3abf5
commit 220dce54db
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ void handleUpdateWarningScreen() {
DrawUtils::setFontSize(24);
const char *message = "The update folder currently exists.";
const char *message = "The update folder currently exists and is not a file.";
DrawUtils::print(SCREEN_WIDTH / 2 + DrawUtils::getTextWidth(message) / 2, SCREEN_HEIGHT / 2 - 24, message, true);
message = "Your system might not be blocking updates properly!";
DrawUtils::print(SCREEN_WIDTH / 2 + DrawUtils::getTextWidth(message) / 2, SCREEN_HEIGHT / 2 + 0, message, true);