From 3e57e03f559affcfaee4f975afab011cfd598d5c Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 12 Dec 2022 20:36:06 +0100 Subject: [PATCH] added constant text value --- src/screens.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/screens.c b/src/screens.c index c0af8083..3ad1096b 100644 --- a/src/screens.c +++ b/src/screens.c @@ -133,6 +133,7 @@ #define TEXT_NEXT_PAGE "Press any key or button for next page" #define TEXT_INFO_MENU "Press any key or button for info menu" +#define TEXT_MAIN_MENU "Press any key or button for main menu" // for input setup functions #define SETUPINPUT_SCREEN_POS_START 0 @@ -4517,7 +4518,7 @@ static void drawChooseTreeScreen_Scores_NotAvailable(void) char *text_info = "HighScores of Level %d"; char *text_title = "Score information:"; char *text_error = "No scores for this level."; - char *text_foot = "Press any key or button for main menu"; + char *text_foot = TEXT_MAIN_MENU; int font_info = FONT_TITLE_2; int font_title = FONT_INITIAL_3; int font_error = FONT_INITIAL_4; -- 2.34.1