From ad6823f39c40768aba0a7dfb95e7898671441b75 Mon Sep 17 00:00:00 2001 From: lxsxl <140750201+lxsxl@users.noreply.github.com> Date: Wed, 15 Nov 2023 22:45:58 +0100 Subject: [PATCH] Update gui.cpp --- src/gui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui.cpp b/src/gui.cpp index 9d2cb86..e4be7bd 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -486,8 +486,8 @@ void BuildMenu() { switch (af) { case 0: tftPrint(1, myLanguage[language][30], 310, ITEM6 + 6, PrimaryColor, PrimaryColorSmooth, 16); break; - case 1: tftPrint(1, myLanguage[language][42], 310, ITEM6 + 6, PrimaryColor, PrimaryColorSmooth, 16); break; - case 2: tftPrint(1, "AF REG", 310, ITEM6 + 6, PrimaryColor, PrimaryColorSmooth, 16); break; + case 1: tftPrint(1, String(myLanguage[language][42]) + "REG ON", 310, ITEM6 + 6, PrimaryColor, PrimaryColorSmooth, 16); break; + case 2: tftPrint(1, String(myLanguage[language][42]) + "REG OFF", 310, ITEM6 + 6, PrimaryColor, PrimaryColorSmooth, 16); break; } if (radio.rds.rtbuffer) tftPrint(1, myLanguage[language][42], 310, ITEM7 + 6, PrimaryColor, PrimaryColorSmooth, 16); else tftPrint(1, myLanguage[language][30], 310, ITEM7 + 6, PrimaryColor, PrimaryColorSmooth, 16); @@ -2496,4 +2496,4 @@ void Infoboxprint(const char* input) { } else { tftPrint(0, input, 155, 78, ActiveColor, ActiveColorSmooth, 28); } -} \ No newline at end of file +}