summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-28 13:19:38 -0400
committerJune McEnroe <june@causal.agency>2021-09-28 13:19:38 -0400
commit9c14b49b6d4016e05a141e5ba52c09b10bde35f7 (patch)
treea0eb01fe0f1a48565e4f45b174d6dd2fe5ff5878
parentAdd mouse support to freecell (diff)
downloadplay-9c14b49b6d4016e05a141e5ba52c09b10bde35f7.tar.gz
play-9c14b49b6d4016e05a141e5ba52c09b10bde35f7.zip
Add news of freecell mouse support to menu
-rw-r--r--play.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/play.c b/play.c
index 3e2811f..1e1ab51 100644
--- a/play.c
+++ b/play.c
@@ -235,7 +235,11 @@ static const struct Game *menu(void) {
 			mvaddstr(2 + 3 * i, 2, Games[i].desc);
 		}
 		attrset(A_BOLD);
-		mvaddstr(2 + 3 * ARRAY_LEN(Games), 2, "Tip: ");
+		mvaddstr(2 + 3 * ARRAY_LEN(Games), 2, "News: ");
+		attrset(A_NORMAL);
+		addstr("FreeCell now supports mouse!");
+		attrset(A_BOLD);
+		mvaddstr(4 + 3 * ARRAY_LEN(Games), 2, "Tip: ");
 		attrset(A_NORMAL);
 		addstr("You can select a game directly using ");
 		attrset(A_BOLD);