From 660514b1c01f35d967d311fff78b36ec64254f96 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 20 Jan 2023 19:11:43 +0100 Subject: [PATCH] Fix typo in error text --- source/UpdateStateRender.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/UpdateStateRender.cpp b/source/UpdateStateRender.cpp index bd5b8d6..fb1a691 100644 --- a/source/UpdateStateRender.cpp +++ b/source/UpdateStateRender.cpp @@ -11,7 +11,7 @@ void UpdaterState::RenderError() { DrawUtils::setFontSize(20); DrawUtils::print(16, 120, ErrorMessage()); if (this->mErrorState == ERROR_FAILED_COPY_FILES) { - DrawUtils::print(16, 160, "Your Aroma installation might has been corrupted. Please re-download Aroma"); + DrawUtils::print(16, 160, "Your Aroma installation might have been corrupted. Please re-download Aroma"); DrawUtils::print(16, 180, "from " AROMA_DOWNLOAD_URL " and replace the files on the sd card."); } else if (this->mErrorState == ERROR_FAILED_TO_DOWNLOAD_VERSIONS || this->mErrorState == ERROR_DOWNLOAD_FAILED) { if (this->mResponseCode != -1) {