From 220dce54dbc65e1df2838d4f10cc867885d427ba Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 11 Jan 2023 10:49:34 +0100 Subject: [PATCH] Update update warning screen to tell the people the update folder is not a file --- source/MenuUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/MenuUtils.cpp b/source/MenuUtils.cpp index 218dd20..47c870e 100644 --- a/source/MenuUtils.cpp +++ b/source/MenuUtils.cpp @@ -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);