From 41ab18f0ffc1db6ed1ecc78a8dcc6e5f3dfb346e Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Mon, 5 Aug 2024 00:52:39 +0200 Subject: [PATCH] Fix wrong text assignment in Auto memory menu --- src/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui.cpp b/src/gui.cpp index c8a332b..47836e7 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -1035,7 +1035,7 @@ void ShowOneLine(byte position, byte item, bool selected) { case AUTOMEM: FullLineSprite.setTextDatum(TL_DATUM); FullLineSprite.setTextColor(ActiveColor, ActiveColorSmooth, false); - FullLineSprite.drawString(removeNewline(myLanguage[language][266]), 6, 2); + FullLineSprite.drawString(removeNewline(myLanguage[language][267]), 6, 2); FullLineSprite.setTextDatum(TR_DATUM); FullLineSprite.setTextColor(PrimaryColor, PrimaryColorSmooth, false);